We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b30acdc commit 0448e84Copy full SHA for 0448e84
.github/workflows/ci.yml
@@ -90,12 +90,7 @@ jobs:
90
needs: changes
91
strategy:
92
matrix:
93
- target:
94
- - ubuntu-latest
95
- - ${{ github.ref_name == 'main' && 'macos-latest' || '' }}
96
- - ${{ github.ref_name == 'main' && 'windows-latest' || '' }}
97
- exclude:
98
- - target: ''
+ target: ${{ github.ref_name == 'main' && fromJSON('["ubuntu-latest","macos-latest","windows-latest"]') || fromJSON('["ubuntu-latest"]') }}
99
uses: ./.github/workflows/reusable-cargo-test.yml
100
with:
101
os: ${{ matrix.target }}
0 commit comments