Skip to content

Merge pull request #26 from phw/add_loadasnat #53

Merge pull request #26 from phw/add_loadasnat

Merge pull request #26 from phw/add_loadasnat #53

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
jobs:
test-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest
test:
runs-on: ubuntu-latest
needs: test-matrix
steps:
- run: echo "All tests passed"