Skip to content

Commit 60f37bf

Browse files
mockersftyranron
andauthored
Fix setting Rust toolchain in CI matrix (rust-mobile#60, rust-mobile#59)
Additionally: - temporary disable target tests Co-authored-by: Kai Ren <[email protected]>
1 parent 4cb0b46 commit 60f37bf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v3
3232

33-
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
33+
- uses: dtolnay/rust-toolchain@master
3434
with:
35+
toolchain: ${{ matrix.toolchain }}
3536
target: ${{ matrix.target }}
3637

3738
- run: cargo build --target=${{ matrix.target }}
3839
- run: cargo doc --target=${{ matrix.target }}
39-
- 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

Comments
 (0)