Skip to content

feat: public endpoint for last completed ingestions #235

feat: public endpoint for last completed ingestions

feat: public endpoint for last completed ingestions #235

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.10" ]
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install poetry==1.3.2
- name: Install dependencies
run: python -m poetry install
- name: Test
run: mkdir -p tmp && pytest -svv --cov=bento_wes --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3