kernel: Rework parts of vfs #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Xernel Lint | |
on: [push, pull_request] | |
jobs: | |
xernel-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt update && sudo apt install -y mtools | |
- run: rustup update && rustup toolchain install nightly | |
- run: rustup component add rust-src rustfmt clippy | |
- run: cargo kernel build | |
- run: cargo kernel fmt --check | |
- run: cargo kernel clippy |