update workflows #1
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: Test building binaries | ||
on: | ||
pull_request: | ||
types: [synchronize] | ||
jobs: | ||
build-for-release: | ||
name: Build and release | ||
strategy: | ||
matrix: | ||
job: | ||
- target: aarch64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-latest | ||
uses: ./.github/workflows/build.yml | ||
Check failure on line 21 in .github/workflows/test.yml GitHub Actions / Test building binariesInvalid workflow file
|
||
with: | ||
target: ${{ matrix.job.target }} |