Skip to content

Merge pull request #36 from alphatwirl/dev #21

Merge pull request #36 from alphatwirl/dev

Merge pull request #36 from alphatwirl/dev #21

Workflow file for this run

name: Run unit test
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
concurrency:
group: unit-test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
jupyter: ["true", "false"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
env:
JUPYTER: ${{ matrix.jupyter }}
run: |
pip install --upgrade pip
pip install -e '.[tests]'
if "$JUPYTER"; then
pip install -e '.[jupyter]';
fi
pip list
- name: Run tests
run: pytest -vv --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true