We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1fb52 commit c61afb2Copy full SHA for c61afb2
.forgejo/workflows/node.yaml
@@ -17,12 +17,7 @@ jobs:
17
- uses: actions/checkout@v4
18
19
- name: Install Rust
20
- uses: actions-rs/toolchain@v1
21
- with:
22
- toolchain: stable
23
- profile: minimal
24
- override: true
25
- components: rustfmt, clippy
+ uses: dtolnay/rust-toolchain@stable
26
27
- name: Cache cargo registry
28
uses: actions/cache@v3
@@ -39,13 +34,13 @@ jobs:
39
34
uses: actions-rs/cargo@v1
40
35
with:
41
36
command: build
42
- args: --release --locked
37
+ args: --workspace --release --locked
43
38
44
- - name: Run tests
45
- uses: actions-rs/cargo@v1
46
47
- command: test
48
- args: --release
+ # - name: Run tests
+ # uses: actions-rs/cargo@v1
+ # with:
+ # command: test
+ # args: --release
49
50
- name: Deploy binary
51
run: |
0 commit comments