Skip to content

Commit 572cfa6

Browse files
committed
WIP dtolnay rust-src
1 parent 0c56040 commit 572cfa6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ on:
1414
merge_group:
1515

1616
env:
17-
# CARGO_TERM_COLOR: always
18-
# CARGO_INCREMENTAL: '0'
19-
# CARGO_PROFILE_DEV_DEBUG: '0'
2017
RUST_TOOLCHAIN_VERSION: "1.80.1"
21-
# RUSTFLAGS: "-D warnings"
22-
# RUSTDOCFLAGS: "-D warnings"
2318
RUST_LOG: "info"
2419

2520
jobs:
@@ -28,6 +23,11 @@ jobs:
2823
runs-on: ubuntu-latest
2924
steps:
3025
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
31-
- run: |
32-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --component rust-src -y
33-
- run: cargo test -p stackable-versioned-macros
26+
- uses: dtolnay/rust-toolchain@master
27+
with:
28+
toolchain: ${{ env.RUST_TOOLCHAIN_VERSION }}
29+
components: rust-src
30+
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3
31+
with:
32+
key: test
33+
- run: cargo test

0 commit comments

Comments
 (0)