Skip to content

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows #94

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows #94

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test package
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install hatch
run:
uv pip install hatch
- name: Run tests
run: hatch test --python ${{ matrix.python-version }} --parallel