Skip to content

⬆️ Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 (#26) #59

⬆️ Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 (#26)

⬆️ Bump pypa/gh-action-pypi-publish from 1.12.2 to 1.12.3 (#26) #59

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
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13.0-beta - 3.13"
steps:
- name: Checkout the code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
# Need fetch-depth 0 for generating version based on tags/commits since tag
fetch-depth: 0
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: make setup
- name: Lint
run: make lint
- name: Run tests
run: make test