We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fd844c commit fc6203dCopy full SHA for fc6203d
.github/workflows/rust.yml
@@ -44,7 +44,7 @@ jobs:
44
sudo apt-get update
45
sudo apt-get install qemu-system-x86 ovmf -y
46
47
- - name: Build
+ - name: Build (without unstable)
48
run: cargo xtask build --target x86_64
49
50
- name: Run VM tests
@@ -77,9 +77,14 @@ jobs:
77
- name: Checkout sources
78
uses: actions/checkout@v2
79
80
- - name: Run cargo test
+ - name: Run cargo test (without unstable)
81
run: cargo xtask test
82
83
+ # At least one unit test, for make_boxed() currently, has different behaviour dependent on
84
+ # the unstable feature.
85
+ - name: Run cargo test (with unstable)
86
+ run: cargo xtask test --include-unstable
87
+
88
lints:
89
name: Lints
90
runs-on: ubuntu-latest
0 commit comments