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.
1 parent 4cb0b46 commit 60f37bfCopy full SHA for 60f37bf
.github/workflows/ci.yml
@@ -30,10 +30,13 @@ jobs:
30
steps:
31
- uses: actions/checkout@v3
32
33
- - uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
+ - uses: dtolnay/rust-toolchain@master
34
with:
35
+ toolchain: ${{ matrix.toolchain }}
36
target: ${{ matrix.target }}
37
38
- run: cargo build --target=${{ matrix.target }}
39
- run: cargo doc --target=${{ matrix.target }}
- - run: cargo test --target=${{ matrix.target }}
40
+ # Temporary test non-target only.
41
+ # TODO: Test in emulator or something.
42
+ - run: cargo test
0 commit comments