Skip to content

Bump actions/checkout from 4.1.0 to 4.1.2 #32

Bump actions/checkout from 4.1.0 to 4.1.2

Bump actions/checkout from 4.1.0 to 4.1.2 #32

Workflow file for this run

---
name: tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/setup-python@v5.1.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
...