We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo test
1 parent d668808 commit 16d6bd5Copy full SHA for 16d6bd5
.github/workflows/main.yml
@@ -4,15 +4,18 @@ on: [push, pull_request]
4
jobs:
5
test:
6
name: Test
7
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
+ os: [ubuntu-latest, macos-latest, windows-latest]
11
rust: [stable, beta, nightly]
12
steps:
13
- uses: actions/checkout@master
14
- name: Install Rust
15
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
16
- run: cargo test
17
+ - name: Integration test
18
+ run: cargo test --manifest-path test-crate/Cargo.toml
19
20
rustfmt:
21
name: Rustfmt
0 commit comments