Skip to content

Update pre-commit requirement from ~=3.7.1 to ~=3.8.0 (#6) #32

Update pre-commit requirement from ~=3.7.1 to ~=3.8.0 (#6)

Update pre-commit requirement from ~=3.7.1 to ~=3.8.0 (#6) #32

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
concurrency:
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint
uses: ./.github/workflows/lint.yaml
build:
name: Build
uses: ./.github/workflows/build.yaml
test:
name: Test
needs: build
uses: ./.github/workflows/test.yaml
release:
name: Release
if: startsWith(github.ref, 'refs/tags/v')
needs: [lint, build, test]
permissions:
contents: write
id-token: write
uses: ./.github/workflows/release.yaml