Skip to content

Commit 4abbec6

Browse files
authored
ci: Remove cargo-rs as it's archived (PLC-lang#1240)
1 parent 96d0492 commit 4abbec6

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -85,28 +85,16 @@ jobs:
8585
directory: "./llvm"
8686

8787
- name: Cargo test (Unit)
88-
uses: actions-rs/cargo@v1
89-
with:
90-
command: test
91-
args: --lib -- --nocapture
88+
run: cargo test --lib -- --nocapture
9289

9390
- name: Cargo test (Correctness)
94-
uses: actions-rs/cargo@v1
95-
with:
96-
command: test
97-
args: correctness -- --nocapture --test-threads=1
91+
run: cargo test correctness -- --nocapture --test-threads=1
9892

9993
- name: Cargo test (Integration)
100-
uses: actions-rs/cargo@v1
101-
with:
102-
command: test
103-
args: integration -- --nocapture --test-threads=1
94+
run: cargo test integration -- --nocapture --test-threads=1
10495

10596
- name: Release Build
106-
uses: actions-rs/cargo@v1
107-
with:
108-
command: build
109-
args: --release
97+
run: cargo build --release --workspace
11098

11199
- uses: actions/upload-artifact@master
112100
with:

0 commit comments

Comments
 (0)