Skip to content

build(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1 #11

build(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1

build(deps): bump actions/upload-artifact from 4.6.2 to 7.0.1 #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
schedule:
- cron: "17 9 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Verify
run: make verify
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: coverage-${{ matrix.python-version }}
path: coverage.xml
if-no-files-found: error
retention-days: 14