We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6f8b9 commit 736e387Copy full SHA for 736e387
.github/workflows/ci_test_latest_released_mpl_java.yml
@@ -9,7 +9,15 @@ on:
9
pull_request:
10
11
jobs:
12
+ getVersion:
13
+ # Don't run the cron builds on forks
14
+ if: github.event_name != 'schedule' || github.repository_owner == 'aws'
15
+ uses: ./.github/workflows/dafny_version.yml
16
+ getVerifyVersion:
17
18
+ uses: ./.github/workflows/dafny_verify_version.ym
19
testJava:
20
+ needs: getVersion
21
strategy:
22
max-parallel: 1
23
matrix:
@@ -40,7 +48,7 @@ jobs:
40
48
- name: Setup Dafny
41
49
uses: dafny-lang/[email protected]
42
50
with:
43
- dafny-version: ${{ inputs.dafny }}
51
+ dafny-version: ${{ needs.getVersion.outputs.version }}
44
52
45
53
- name: Regenerate code using smithy-dafny if necessary
46
54
if: ${{ inputs.regenerate-code }}
0 commit comments