examples(android): Update dependencies (#47) #151
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "Makefile.toml" | |
| - "README.md" | |
| - "release.toml" | |
| - "examples/**" | |
| jobs: | |
| # Run cargo clippy -- -D warnings | |
| clippy_check: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v3 | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: dsherret/rust-toolchain-file@v1 | |
| - name: Install Dependencies | |
| run: sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | |
| - name: Run clippy | |
| uses: actions-rs/cargo@v1.0.1 | |
| with: | |
| args: -- -D warnings | |
| command: clippy | |
| # Run cargo fmt --all -- --check | |
| format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v3 | |
| - uses: dsherret/rust-toolchain-file@v1 | |
| - name: Run cargo fmt | |
| uses: actions-rs/cargo@v1.0.1 | |
| with: | |
| args: --all -- --check | |
| command: fmt |