diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a1831ff..8ca1305a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,14 @@ jobs: run: cargo build --all --verbose - name: Run tests run: cargo test --all --verbose + + # build on nightly + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + components: clippy, rustfmt + - name: Build on nightly without features + run: cargo build --no-default-features + - name: Build on nightly + run: cargo build --all --verbose