Skip to content

Bump actions/setup-python from 4.7.1 to 5.0.0 #25

Bump actions/setup-python from 4.7.1 to 5.0.0

Bump actions/setup-python from 4.7.1 to 5.0.0 #25

Workflow file for this run

---
name: tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/setup-python@v5.0.0
with:
python-version-file: pyproject.toml
- name: install dev dependencies
run: pip install --user .[dev]
- name: run tests
run: python -mpytest
- name: lint
run: python -mflake8
...