Skip to content

⬆️ Bump actions/checkout from 5.0.0 to 6.0.0 #84

⬆️ Bump actions/checkout from 5.0.0 to 6.0.0

⬆️ Bump actions/checkout from 5.0.0 to 6.0.0 #84

Workflow file for this run

---
name: Test
"on":
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- name: Checkout the code
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
# Need fetch-depth 0 for generating version based on tags/commits since tag
fetch-depth: 0
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: make setup
- name: Lint
run: make lint
- name: Run tests
run: make test