We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents caf0aac + 1685661 commit 2647583Copy full SHA for 2647583
.github/workflows/build.yml
@@ -30,8 +30,14 @@ jobs:
30
strategy:
31
fail-fast: false
32
matrix:
33
- platform: [ self-hosted, windows-latest, macos-latest ]
34
- toolchain: [ stable, beta, 1.75.0 ] # 1.75.0 is the MSRV for all crates
+ platform: >-
+ ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'
35
+ && fromJSON('["self-hosted","windows-latest","macos-latest"]')
36
+ || fromJSON('["self-hosted"]') }}
37
+ toolchain: >-
38
39
+ && fromJSON('["stable","beta","1.75.0"]')
40
+ || fromJSON('["1.75.0"]') }}
41
exclude:
42
- platform: windows-latest
43
toolchain: 1.75.0
0 commit comments