embed assets #44
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
check: | |
name: Check | |
runs-on: alpine-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: System dependencies | |
run: sudo apk add gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
- name: PWD | |
run: echo $PWD | |
- name: Clippy | |
run: "BEVY_ASSET_PATH=$GITHUB_WORKSPACE/client/assets cargo clippy --workspace -- -D warnings" |