File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -15,20 +15,14 @@ jobs:
15
15
strategy :
16
16
matrix :
17
17
os : [ubuntu-latest, windows-latest, macOS-latest]
18
- toolchain :
19
- - stable
20
- - beta
21
- - nightly
22
18
23
19
steps :
24
20
- uses : actions/checkout@v4
25
- - name : Update rust
26
- run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
27
21
- name : Build
28
22
run : cargo build --verbose
29
23
- name : Upload artifacts
30
24
uses : actions/upload-artifact@v4
31
25
with :
32
- name : my-artifact
26
+ name : envfetch-${{ matrix.os }}
33
27
path : |
34
28
target/debug/envfetch*
Original file line number Diff line number Diff line change 15
15
strategy :
16
16
matrix :
17
17
os : [ubuntu-latest, windows-latest, macOS-latest]
18
+ toolchain :
19
+ - stable
20
+ - beta
21
+ - nightly
22
+
18
23
19
24
steps :
20
25
- uses : actions/checkout@v4
26
+ - name : Update rust
27
+ run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
21
28
- name : Build
22
29
run : cargo build --verbose
23
30
- name : Run tests
You can’t perform that action at this time.
0 commit comments