Skip to content

Bump actions/checkout from 6 to 7 in the github-actions group #28

Bump actions/checkout from 6 to 7 in the github-actions group

Bump actions/checkout from 6 to 7 in the github-actions group #28

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release-check:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dev dependencies
run: python -m pip install --upgrade pip && python -m pip install -r requirements-dev.txt
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Install gitleaks
run: go install github.com/zricethezav/gitleaks/v8@v8.24.3
- name: Run public release gate
run: PATH="$HOME/go/bin:$PATH" REQUIRE_GITLEAKS=1 make release-check