File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,16 @@ jobs:
32
32
rust-version : ['${{needs.pre-build.outputs.rust-version}}', stable, nightly]
33
33
steps :
34
34
- uses : actions/checkout@v4
35
+ - uses : taiki-e/install-action@v2
36
+ with :
37
+ tool : just
35
38
- name : Use Rust ${{matrix.rust-version}}
36
39
if : matrix.rust-version != 'stable'
37
40
run : rustup override set '${{matrix.rust-version}}'
38
41
- name : Build
39
42
run : cargo build --workspace --all-features
40
43
- name : Check fallback implementation
41
- run : cargo check --workspace
42
- env :
43
- RUSTFLAGS : --cfg terminal_colorsaurus_test_unsupported -Dwarnings
44
+ run : just check-unsupported
44
45
docs :
45
46
name : Docs
46
47
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -9,5 +9,8 @@ test-package name *args:
9
9
cargo package -p " {{ name}} " {{ args}}
10
10
(cd $CARGO_TARGET_DIR/ package/ {{name}}-*/ && cargo test)
11
11
12
+ check-unsupported :
13
+ RUSTFLAGS=' --cfg terminal_colorsaurus_test_unsupported -Dwarnings' cargo check --workspace
14
+
12
15
doc :
13
16
cargo + nightly docs-rs -p terminal-colorsaurus
You can’t perform that action at this time.
0 commit comments