clean up env #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tox | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
py: ["3.8", "3.9", "3.10"] | |
steps: | |
- name: Setup python for test ${{ matrix.py }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.py }} | |
- uses: actions/checkout@v3 | |
- name: Upgrade pip | |
run: python -m pip install -U pip setuptools wheel cython | |
- name: Install | |
run: python -m pip install -e '.[dev]' | |
- name: Check formatting | |
run: ruff format . | |
- name: Check lint | |
run: ruff check . |