Skip to content

Bump version to 0.4.0 #74

Bump version to 0.4.0

Bump version to 0.4.0 #74

Workflow file for this run

name: Check
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
check:
runs-on: ubuntu-latest
name: test with ${{ matrix.py }}
strategy:
fail-fast: false
matrix:
py:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: ${{ matrix.py }}
- name: Install tox
run: python -m pip install -r .github/requirements.txt
- name: Run test suite
run: tox -e py