Skip to content

Merge pull request #114 from weblyzard/dependabot/github_actions/acti… #283

Merge pull request #114 from weblyzard/dependabot/github_actions/acti…

Merge pull request #114 from weblyzard/dependabot/github_actions/acti… #283

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install build environment
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Build and test with uv.
run: |
uv run ruff check
uv build