Update regex in swab and send ETLs to include all negative responses #1281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 deps | |
run: | | |
python3 -m pip install --editable "git+https://github.com/seattleflu/id3c@master#egg=id3c" | |
python3 -m pip install --upgrade --editable ".[dev]" | |
- name: Run pytest | |
run: pytest -v |