We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63d18fd commit c266c32Copy full SHA for c266c32
.github/workflows/ci.nightly.yml
@@ -26,8 +26,14 @@ jobs:
26
include:
27
# 1. We intentionally put nightly CI into a separate YAML
28
# file (`ci.nightly.yml` versus the main `ci.yml` file).
29
+ # This allows us to enable and disable the nightly CI
30
+ # workflow from the GitHub web UI, without having any
31
+ # impact on the main CI.
32
# 2. We intentionally only run one CI job on Julia nightly,
33
# in order to conserve CI resources.
34
+ # 3. This CI only runs on Julia nightly. It doesn't run on
35
+ # on Julia pre-releases. For CI on Julia pre-releases,
36
+ # see the main CI workflow file.
37
- julia-version: 'nightly'
38
julia-wordsize: '64'
39
github-runner: ubuntu-latest
0 commit comments