Arm32 builds with Zig #304
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: Build Python on branch | ||
on: | ||
push: | ||
branches: ["main"] | ||
paths: ["scripts/**", ".github/workflows/**"] | ||
pull_request: | ||
paths: ["scripts/**", ".github/workflows/**"] | ||
workflow_dispatch: | ||
inputs: | ||
run_tests: | ||
required: false | ||
type: boolean | ||
debug: | ||
required: false | ||
type: boolean | ||
jobs: | ||
build: | ||
name: ${{ matrix.python_version }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python_version: [ 3.8.17, 3.9.17, 3.10.13 ] | ||
uses: ./.github/workflows/build_python.yml | ||
Check failure on line 25 in .github/workflows/build_python_on_branch.yml GitHub Actions / Build Python on branchInvalid workflow file
|
||
with: | ||
python_version: ${{ matrix.python_version }} | ||
run_tests: ${{ inputs.run_tests || false }} | ||
debug: ${{ inputs.debug || false }} |