We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a261de commit c285e0fCopy full SHA for c285e0f
.github/workflows/integration.yml
@@ -13,11 +13,24 @@ on:
13
- '**.md'
14
15
jobs:
16
+ toolchain_setup:
17
+ runs-on: ubuntu-latest
18
+
19
+ steps:
20
+ - name: rust-toolchain
21
+ uses: actions-rs/[email protected]
22
+ with:
23
+ toolchain: nightly
24
+ target: x86_64-unknown-linux-gnu
25
+ profile: minimal
26
+ - name: Master Toolchain Setup
27
+ run: sh setup_toolchain.sh
28
29
build:
30
+ needs: toolchain_setup
31
runs-on: ubuntu-latest
32
33
steps:
- - uses: actions/checkout@v1
34
- name: Build
35
run: cargo build --features integration
36
@@ -42,7 +55,7 @@ jobs:
42
55
- 'rust-lang/log'
43
56
- 'chronotope/chrono'
44
57
45
- needs: build
58
+ needs: [toolchain_setup, build]
46
59
47
60
48
61
0 commit comments