Skip to content

chore(deps): update actions/checkout action to v7 #251

chore(deps): update actions/checkout action to v7

chore(deps): update actions/checkout action to v7 #251

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
- name: Install dependencies
run: uv sync --extra test
- name: Test with pytest
run: uv run pytest -vvv
- name: Check coverage
run: uv run pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=83