chore: update maxAge for badges #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
LATEST_PY_VERSION: '3.12' | |
UV_VERSION: '0.5.6' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- '3.13' | |
- '3.12' | |
- '3.11' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup uv and python | |
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4.2.0 | |
with: | |
version: ${{ env.UV_VERSION }} | |
python-version: ${{ matrix.python-version }} | |
enable-cache: true | |
cache-dependency-glob: | | |
pyproject.toml | |
- name: Install dependencies | |
run: uv sync --dev | |
- name: Run tests | |
run: uv run pytest -rs tests | |
# Run code analysis checks | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: ${{ env.LATEST_PY_VERSION }} | |
- name: Run style checks and linting via pre-commit hooks | |
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 |