Skip to content

CI: Slightly update GHA configuration, now targeting branch main #230

CI: Slightly update GHA configuration, now targeting branch main

CI: Slightly update GHA configuration, now targeting branch main #230

Workflow file for this run

name: "Tests"
on:
push:
branches: [ main ]
pull_request: ~
workflow_dispatch:
# Cancel redundant in-progress jobs.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: yezz123/setup-uv@v4
- run: uv pip install -r requirements.txt --system
- run: pytest