Skip to content

Account & device management: session/CSRF routes + in-session password change #41

Account & device management: session/CSRF routes + in-session password change

Account & device management: session/CSRF routes + in-session password change #41

Workflow file for this run

name: Tests
on: [push, pull_request]
permissions:
contents: read
# Pushing a new commit to a branch supersedes the older in-flight run.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest -q -p no:warnings