Skip to content

chore(deps): bump wheel from 0.43.0 to 0.44.0 #391

chore(deps): bump wheel from 0.43.0 to 0.44.0

chore(deps): bump wheel from 0.43.0 to 0.44.0 #391

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
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 mypy
run: make lint-mypy
- name: Test with pytest
run: make test