Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] add CI step to build kernel with no-default-features #601

Merged
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: build docs
run: cargo doc
build:
build_and_clippy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -101,6 +101,8 @@ jobs:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- name: check kernel builds with no-default-features
run: cargo build -p delta_kernel --no-default-features
zachschuermann marked this conversation as resolved.
Show resolved Hide resolved
- name: build and lint with clippy
run: cargo clippy --benches --tests --all-features -- -D warnings
- name: lint without default features
Expand Down
Loading