Skip to content

Commit 60dbb37

Browse files
committed
Update ci_tests.yml
1 parent b8a58b8 commit 60dbb37

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci_tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- 'Makefiles/**'
1717

1818
env:
19-
RUST_LATEST_STABLE_VERSION: '1.65'
19+
RUST_LATEST_STABLE_VERSION: 1.65
2020
CARGO_TERM_COLOR: always
2121
RUSTFLAGS: -D warnings
2222
RUST_BACKTRACE: 1
@@ -43,7 +43,7 @@ jobs:
4343
- name: Run vit-ss tests
4444
uses: actions-rs/toolchain@v1
4545
with:
46-
toolchain: $RUST_LATEST_STABLE_VERSION
46+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
4747
- run: |
4848
cargo build -p vit-servicing-station-cli -p vit-servicing-station-server
4949
cargo nextest run \
@@ -73,7 +73,7 @@ jobs:
7373
- name: Run catalyst-toolbox tests
7474
uses: actions-rs/toolchain@v1
7575
with:
76-
toolchain: $RUST_LATEST_STABLE_VERSION
76+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
7777
- run: cargo nextest run -p catalyst-toolbox -p snapshot-lib --profile ci
7878

7979
voting_tools:
@@ -96,7 +96,7 @@ jobs:
9696
- name: Run voting-tools tests
9797
uses: actions-rs/toolchain@v1
9898
with:
99-
toolchain: $RUST_LATEST_STABLE_VERSION
99+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
100100
- run: cargo nextest run -p voting_tools_rs --profile ci
101101

102102
chain-libs:
@@ -119,7 +119,7 @@ jobs:
119119
- name: Run chain-libs tests
120120
uses: actions-rs/toolchain@v1
121121
with:
122-
toolchain: $RUST_LATEST_STABLE_VERSION
122+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
123123
- run: cargo nextest run -p "chain-*" --profile ci
124124

125125
jormungandr:
@@ -142,7 +142,7 @@ jobs:
142142
- name: Run jormungandr tests
143143
uses: actions-rs/toolchain@v1
144144
with:
145-
toolchain: $RUST_LATEST_STABLE_VERSION
145+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
146146
- run: cargo nextest run -p jormungandr --profile ci
147147

148148
jormungandr-integration:
@@ -165,7 +165,7 @@ jobs:
165165
- name: Run jormungandr-integration tests
166166
uses: actions-rs/toolchain@v1
167167
with:
168-
toolchain: $RUST_LATEST_STABLE_VERSION
168+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
169169
- run: |
170170
cargo build -p jcli -p jormungandr -p explorer
171171
cargo nextest run -p jormungandr-integration-tests --profile ci
@@ -217,6 +217,6 @@ jobs:
217217
- name: Clippy and fmt
218218
uses: actions-rs/toolchain@v1
219219
with:
220-
toolchain: $RUST_LATEST_STABLE_VERSION
220+
toolchain: ${{env.RUST_LATEST_STABLE_VERSION}}
221221
components: rustfmt, clippy
222222
- run: scripts/check-fmt.sh

0 commit comments

Comments
 (0)