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 f7972c9 commit f27f71bCopy full SHA for f27f71b
.github/workflows/build-test.yml
@@ -19,12 +19,19 @@ on:
19
pull_request:
20
branches: '*'
21
22
+
23
jobs:
24
25
# Build job - basic smoke test
26
check:
27
runs-on: ubuntu-latest
28
steps:
29
+ - name: Set the rust toolchain to use
30
+ # pull_request is a fake for me to be able to test this for now
31
+ - if: github.event.schedule || github.event.pull_request || (github.event.workflow_dispatch && inputs.nightly)
32
+ run: |
33
+ rustup default nightly
34
+ echo "ICU4X_NIGHTLY_TOOLCHAIN=nightly" >> >> $GITHUB_ENV
35
- uses: actions/checkout@v2
36
- name: Load the default Rust toolchain via the rust-toolchain file.
37
run: rustup show
0 commit comments