Merge pull request #79 from Drewol/dependabot/cargo/glam-0.29.0 #318
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: Check | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Packages | |
run: sudo apt-get update && sudo apt-get install -y libasound2-dev libsoundtouch-dev libegl1-mesa-dev libfreetype6-dev zlib1g-dev libgtk-3-dev libudev-dev | |
- run: rustup component add clippy | |
- uses: giraffate/clippy-action@v1 | |
with: | |
clippy_flags: --workspace --all-features -- -Awarnings | |
filter_mode: nofilter | |
level: error |