File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -56,15 +56,17 @@ jobs:
56
56
runs-on : ubuntu-latest
57
57
strategy :
58
58
matrix :
59
- target : [x86_64-unknown-redox, x86_64-fuchsia]
59
+ target : ["aarch64-apple-ios" "aarch64-linux-android" " x86_64-apple-darwin" " x86_64-fuchsia" "x86_64-pc-windows-msvc" "x86_64-sun-solaris" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd" "x86_64-unknown-redox" ]
60
60
steps :
61
61
- uses : actions/checkout@master
62
62
- name : Install Rust
63
- run : rustup update nightly && rustup default nightly
64
- - run : rustup target add ${{ matrix.target }}
65
- - run : cargo check --target ${{ matrix.target }} --all-targets --examples --bins --tests --no-default-features
66
- - run : cargo check --target ${{ matrix.target }} --all-targets --examples --bins --tests --all-features
67
- continue-on-error : true
63
+ run : rustup update stable && rustup default stable
64
+ - name : Install cargo-hack
65
+ run : cargo install cargo-hack
66
+ - name : Install Target
67
+ run : rustup target add ${{ matrix.target }}
68
+ - name : Run check:
69
+ run : cargo hack check --feature-powerset --all-targets --examples --bins --tests --target ${{ matrix.target }}
68
70
69
71
Publish_docs :
70
72
name : Publish Documentation
You can’t perform that action at this time.
0 commit comments