File tree Expand file tree Collapse file tree 5 files changed +32
-49
lines changed
Expand file tree Collapse file tree 5 files changed +32
-49
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ windows :
7+ runs-on : windows-latest
8+ steps :
9+ - name : Checkout code
10+ uses : actions/checkout@v2
11+ with :
12+ persist-credentials : false
13+ - name : Configure Rust compiler
14+ run : |
15+ rustup update
16+ rustup default ${{ matrix.channel }}
17+ rustup target add ${{ matrix.target }}
18+ rustup component add clippy rustfmt
19+ - name : Formatting
20+ run : cargo fmt --check
21+ - name : Clippy
22+ run : cargo clippy --target ${{ matrix.target }} --workspace --examples --tests
23+ - name : Tests
24+ run : cargo test --target ${{ matrix.target }} --workspace --examples --tests
25+
26+ strategy :
27+ fail-fast : false
28+ matrix :
29+ channel : [stable]
30+ target :
31+ - x86_64-pc-windows-gnu
32+ - x86_64-pc-windows-msvc
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments