Skip to content

BUG: Fix bug with logger call #83

BUG: Fix bug with logger call

BUG: Fix bug with logger call #83

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-linux:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt pytest pytest-cov
# TODO: The requirements.txt is very out of date... let's install
# a newer setuptools that actually works on 3.9+.
pip install --upgrade pip setuptools
pip install --no-build-isolation -ve .
- run: pytest tests/test.py
- uses: codecov/codecov-action@v3
if: success()