Skip to content

Commit 225ae4c

Browse files
committed
Also test very_unstable feature on CI
1 parent 0d51b27 commit 225ae4c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

+20
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,26 @@ jobs:
6767
command: test
6868
args: --features unstable
6969

70+
very_unstable:
71+
name: Test Suite (very_unstable)
72+
runs-on: ubuntu-latest
73+
steps:
74+
- name: Checkout sources
75+
uses: actions/checkout@v2
76+
77+
- name: Install nightly toolchain
78+
uses: actions-rs/toolchain@v1
79+
with:
80+
profile: minimal
81+
toolchain: nightly
82+
override: true
83+
84+
- name: Run cargo test --features very_unstable
85+
uses: actions-rs/cargo@v1
86+
with:
87+
command: test
88+
args: --features very_unstable
89+
7090

7191
lints:
7292
name: Lints

0 commit comments

Comments
 (0)