feat: adding flags to enable dev mode; flags for custom path to localnet config #1641
Workflow file for this run
This file contains 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: Codebase validation | |
on: | |
pull_request: | |
schedule: | |
- cron: "0 8 * * 1" # Each monday 8 AM UTC | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-check: | |
name: Check Python | |
uses: ./.github/workflows/check-python.yaml | |
pr-build: | |
name: Build & Test Python | |
needs: pr-check | |
uses: ./.github/workflows/build-python.yaml | |
pr-binaries-build: | |
name: Build & Test Binaries | |
needs: pr-check | |
uses: ./.github/workflows/build-binaries.yaml | |
with: | |
production_release: "false" | |
python_version: "3.12" | |
secrets: inherit |