Skip to content

Commit 6c28951

Browse files
committed
ci: Skip UI tests on Rust 1.34.2
trybuild uses some cargo options that aren't supported yet
1 parent abbffdc commit 6c28951

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ jobs:
77
strategy:
88
matrix:
99
rust: [nightly, stable, 1.34.2]
10+
include:
11+
- rust: 1.34.2
12+
extra-test-opts: -- --skip ui
1013
runs-on: ubuntu-latest
1114

1215
steps:
@@ -17,7 +20,7 @@ jobs:
1720
profile: minimal
1821
default: true
1922
- run: cargo build
20-
- run: cargo test --all
23+
- run: cargo test --all ${{ matrix.extra-test-opts }}
2124
clippy:
2225
runs-on: ubuntu-latest
2326
steps:

0 commit comments

Comments
 (0)