Skip to content

typo in gh action

typo in gh action #80

Workflow file for this run

name: Build and test
on: [push]
jobs:
test-and-check:
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: ${{ matrix.python-version }}
- name: Run install
run: |
make install
- name: Run checkers
run: |
make check
- name: Run tests
run: |
make test