Skip to content

Merge pull request #1 from JKatzwinkel/dependabot/github_actions/acti… #14

Merge pull request #1 from JKatzwinkel/dependabot/github_actions/acti…

Merge pull request #1 from JKatzwinkel/dependabot/github_actions/acti… #14

Workflow file for this run

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