Support for Python 3.14 #120
This file contains hidden or 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: Lint and Test | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
lint-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11, 3.14] # Our min and max supported Python versions | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: astral-sh/setup-uv@v7 | |
with: | |
enable-cache: true | |
python-version: ${{ matrix.python-version }} | |
- name: Run filesystem-mutating tests | |
run: uv run pytest -m filesystem # Avoid race conditions by running sequentially | |
- name: Run remaining tests | |
run: uv run pytest -m "not filesystem" -n auto |