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 787f63a commit 15a134cCopy full SHA for 15a134c
.github/workflows/nightly_dafny.yml
@@ -11,6 +11,10 @@ on:
11
- cron: "30 16 * * *"
12
13
jobs:
14
+ getVersion:
15
+ # Don't run the cron builds on forks
16
+ if: github.event_name != 'schedule' || github.repository_owner == 'aws'
17
+ uses: ./.github/workflows/dafny_version.yaml
18
dafny-nightly-format:
19
# Don't run the cron builds on forks
20
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
@@ -39,6 +43,7 @@ jobs:
39
43
regenerate-code: true
40
44
dafny-nightly-python:
41
45
needs: getVersion
46
42
47
uses: ./.github/workflows/library_python_tests.yml
48
with:
49
dafny: ${{needs.getVersion.outputs.version}}
0 commit comments