Skip to content

Commit 2391f01

Browse files
committed
CI: remove actions-rs/cargo
1 parent 9ea1c20 commit 2391f01

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,23 @@ jobs:
77
- uses: actions/checkout@v3
88
- run: |
99
rustup toolchain install stable --profile minimal --no-self-update
10-
- uses: actions-rs/cargo@v1
11-
with:
12-
command: build
10+
- run: cargo build
1311

1412
build_MacOS:
1513
runs-on: macos-latest
1614
steps:
1715
- uses: actions/checkout@v3
1816
- run: |
1917
rustup toolchain install stable --profile minimal --no-self-update
20-
- uses: actions-rs/cargo@v1
21-
with:
22-
command: build
18+
- run: cargo build
2319

2420
build_Windows:
2521
runs-on: windows-latest
2622
steps:
2723
- uses: actions/checkout@v3
2824
- run: |
2925
rustup toolchain install stable --profile minimal --no-self-update
30-
- uses: actions-rs/cargo@v1
31-
with:
32-
command: build
26+
- run: cargo build
3327

3428
build_demo:
3529
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)