Skip to content

chore: improve file hooks #9

chore: improve file hooks

chore: improve file hooks #9

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ "pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel coverage ruff
- name: Lint with Ruff
run: |
ruff --output-format=github .
continue-on-error: true
- name: Run tests
run: |
pip install -e .
python -m unittest discover -s tests/