Skip to content

Merge pull request #3 from 153957/dependabot/pip/ruff-0.0.275 #48

Merge pull request #3 from 153957/dependabot/pip/ruff-0.0.275

Merge pull request #3 from 153957/dependabot/pip/ruff-0.0.275 #48

Workflow file for this run

name: Run tests
on:
push:
jobs:
rufftest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'requirements-ruff.txt'
- run: make ruffinstall
- run: make rufftest
env:
RUFF_FORMAT: github
mypytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: make devinstall
- run: make mypytest
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: make devinstall
- run: make unittest