Skip to content

chore(deps): update astral-sh/setup-uv action to v7 #13

chore(deps): update astral-sh/setup-uv action to v7

chore(deps): update astral-sh/setup-uv action to v7 #13

Workflow file for this run

name: Test
# If a pull-request is pushed then cancel all previously running jobs related
# to that pull-request
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PY_COLORS: 1
jobs:
unit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python:
- version: "3.10"
- version: "3.11"
- version: "3.12"
- version: "3.13"
- version: '3.14.0-alpha - 3.14' # SemVer's version range syntax
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Run lint
run: uv run poe lint
- name: Run test
run: uv run poe test