Skip to content

Commit

Permalink
Theoretically it works, hopefully.
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityDevTech committed Oct 7, 2024
1 parent b28ec37 commit 22e1b4e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/BuildQualityChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
run: sudo apt-get install -y -qq librust-alsa-sys-dev pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
- name: Buildable
run: cargo build --verbose --features dev
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Needed
run: sudo apt-get install -y -qq librust-alsa-sys-dev pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
- name: Run Clippy
run: cargo clippy --all-targets --all-features
# quality:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Install Needed
# run: sudo apt-get install -y -qq librust-alsa-sys-dev pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
# - name: Run Clippy
# run: cargo clippy --all-targets --all-features
14 changes: 14 additions & 0 deletions .github/workflows/ClippyAnnotate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: push
name: Clippy check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Needed
run: sudo apt-get install -y -qq librust-alsa-sys-dev pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features

0 comments on commit 22e1b4e

Please sign in to comment.