File tree Expand file tree Collapse file tree 9 files changed +173
-431
lines changed Expand file tree Collapse file tree 9 files changed +173
-431
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,22 @@ jobs:
2626 - uses : actions-rs/toolchain@v1
2727 if : ${{ matrix.os == 'windows-latest' }}
2828 with :
29+ components : clippy
30+ profile : minimal
2931 toolchain : stable
30- components : rustfmt, clippy
32+
33+ - uses : actions-rs/toolchain@v1
34+ if : ${{ matrix.os == 'windows-latest' }}
35+ with :
36+ components : rustfmt
3137 profile : minimal
32- override : true
38+ toolchain : nightly
39+
3340 - uses : cachix/install-nix-action@v20
3441 if : ${{ matrix.os != 'windows-latest' }}
3542 with :
3643 nix_path : nixpkgs=channel:nixos-unstable
44+
3745 - uses : cachix/cachix-action@v12
3846 if : ${{ matrix.os != 'windows-latest' && env.CACHIX_AUTH_TOKEN != '' }}
3947 with :
4553 with :
4654 key : ${{ matrix.os }}
4755
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