Skip to content

Forgot to update version of package #327

Forgot to update version of package

Forgot to update version of package #327

Workflow file for this run

name: test suite
on:
push:
branches:
- master
pull_request:
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox tox-gh-actions codecov
- run: tox
- run: codecov
check:
runs-on: ubuntu-latest
if: always()
needs:
- tox
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}