Rewrote core into libraries/system, using the emulator-hal interfaces #53
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: clippy | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
permissions: | |
contents: read | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y alsa-base libasound2-dev libxkbcommon-dev | |
- name: Select rust version | |
run: | | |
rustup toolchain install 1.70 --profile minimal --no-self-update | |
rustup default 1.70 | |
rustup component add clippy | |
- name: Check clippy | |
run: | | |
cargo clippy --workspace |