Skip to content

ci: pin all GitHub Actions by SHA and update via dependabot #36

ci: pin all GitHub Actions by SHA and update via dependabot

ci: pin all GitHub Actions by SHA and update via dependabot #36

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test with Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: ${{ matrix.python-version }}
- run: |
pip install hatch
hatch run tests.py${{ matrix.python-version }}:tests