This repository was archived by the owner on Aug 5, 2025. It is now read-only.
Master branch push or pull_request #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
name: Master branch push or pull_request | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
concurrency: | ||
group: "${{ github.ref }}-${{ github.workflow }}" | ||
cancel-in-progress: true | ||
jobs: | ||
check-vars-and-secrets: | ||
name: Check vars and secrets | ||
uses: ./.github/workflows/_check-vars-and-secrets.yml | ||
secrets: inherit | ||
rust-crates-checks: | ||
name: Rust crates checks | ||
uses: ./.github/workflows/rust-crates-checks.yml | ||
Check failure on line 24 in .github/workflows/on-master-branch-push-pull_request.yml
|
||
secrets: inherit | ||
measure-circuits: | ||
name: Measure circuits | ||
needs: [rust-crates-checks] | ||
uses: ./.github/workflows/_measure-circuits.yml | ||
secrets: inherit |