- param $fid following previous commit 77e25ff08c50c3275a17ac6e4dd3…
#44
Workflow file for this run
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
| # https://stackoverflow.com/questions/75318609/matrix-strategy-over-entire-workflow-in-github-actions/75337311#75337311 | |
| name: be | |
| on: | |
| push: | |
| paths: [be/**] | |
| jobs: | |
| runs-on: | |
| strategy: | |
| matrix: | |
| runs-on: [ubuntu-latest, windows-latest, macos-latest] | |
| fail-fast: false | |
| uses: ./.github/workflows/be_base.yaml | |
| with: | |
| runs-on: ${{ matrix.runs-on }} |