Skip to content

Bump actions/checkout from 3.5.0 to 3.5.3 #15

Bump actions/checkout from 3.5.0 to 3.5.3

Bump actions/checkout from 3.5.0 to 3.5.3 #15

Workflow file for this run

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