Skip to content

Merge pull request #329 from seattleflu/sample-api-update #718

Merge pull request #329 from seattleflu/sample-api-update

Merge pull request #329 from seattleflu/sample-api-update #718

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: python=${{ matrix.python }} os=${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
python:
- 3.8
- 3.9
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Upgrade Python toolchain
run: python3 -m pip install --upgrade pip setuptools wheel
- name: Install ID3C
run: python3 -m pip install --upgrade --editable ".[dev]"
- name: Run pytest
run: pytest -v