File tree 9 files changed +173
-431
lines changed
9 files changed +173
-431
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,22 @@ jobs:
26
26
- uses : actions-rs/toolchain@v1
27
27
if : ${{ matrix.os == 'windows-latest' }}
28
28
with :
29
+ components : clippy
30
+ profile : minimal
29
31
toolchain : stable
30
- components : rustfmt, clippy
32
+
33
+ - uses : actions-rs/toolchain@v1
34
+ if : ${{ matrix.os == 'windows-latest' }}
35
+ with :
36
+ components : rustfmt
31
37
profile : minimal
32
- override : true
38
+ toolchain : nightly
39
+
33
40
- uses : cachix/install-nix-action@v20
34
41
if : ${{ matrix.os != 'windows-latest' }}
35
42
with :
36
43
nix_path : nixpkgs=channel:nixos-unstable
44
+
37
45
- uses : cachix/cachix-action@v12
38
46
if : ${{ matrix.os != 'windows-latest' && env.CACHIX_AUTH_TOKEN != '' }}
39
47
with :
45
53
with :
46
54
key : ${{ matrix.os }}
47
55
48
- - run : cargo xtask ci
49
- if : ${{ matrix.os == 'windows-latest' }}
50
- - run : nix-shell --cores 0 --pure --run 'rm -rf ~/.cargo/bin; cargo xtask ci'
51
- if : ${{ matrix.os != 'windows-latest' }}
56
+ - name : Install just
57
+ uses : taiki-e/install-action@v2
58
+ with :
59
+ tool : just
60
+
61
+ - name : Run lints
62
+ run : just lint
63
+
64
+ - name : Run tests
65
+ run : just test
You can’t perform that action at this time.
0 commit comments