Skip to content

Merge pull request #93 from siddhantgoel/dependabot/pip/werkzeug-3.0.1 #227

Merge pull request #93 from siddhantgoel/dependabot/pip/werkzeug-3.0.1

Merge pull request #93 from siddhantgoel/dependabot/pip/werkzeug-3.0.1 #227

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup pip
run: |
python -m pip install --upgrade pip pip-tools
pip-sync requirements.txt
pip install .
- name: Lint with ruff
run: make lint-ruff
- name: Lint with black
run: make lint-black
- name: Lint with mypy
run: make lint-mypy
- name: Test with pytest
run: make test