Skip to content

build(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 #9

build(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0

build(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 #9

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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: coverage-${{ matrix.python-version }}
path: coverage.xml
if-no-files-found: error
retention-days: 14