Skip to content

:octocat: Bump actions/checkout from 4.1.4 to 4.1.7 #38

:octocat: Bump actions/checkout from 4.1.4 to 4.1.7

:octocat: Bump actions/checkout from 4.1.4 to 4.1.7 #38

Workflow file for this run

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