Skip to content

Update test.yml

Update test.yml #194

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install this project and its dependencies
run: |
pip install --upgrade pip
pip install .[dev]
pip list
- name: Run pytest
run: |
coverage run -m pytest tests/common
shell: bash
- uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: python-${{ matrix.python-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
coverage-finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true