chore: Update Bevy to 0.13 #154
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: 🔁 Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
check_formatting: | |
runs-on: ubuntu-latest | |
name: 🗒 Check Rust formatting | |
steps: | |
- name: ⬇️ Checkout Source | |
uses: actions/checkout@v4 | |
- name: 🦀 Install Rustfmt | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: 🔧 Check | |
run: cargo fmt --all -- --check | |
clippy_correctness_checks: | |
runs-on: ubuntu-latest | |
name: 🔧 Clippy correctness checks | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { target: "x86_64-unknown-linux-gnu", target_dir: "target" } | |
steps: | |
- name: ⬇️ Checkout Source | |
uses: actions/checkout@v4 | |
- name: 🧰 Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y -q \ | |
libasound2-dev \ | |
libudev-dev | |
- name: 🧰 Install Clippy | |
if: matrix.config.target != 'wasm32-unknown-unknown' | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: ♻️ Cache Cargo | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
web-target/ | |
key: ci-${{ matrix.config.target }}-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
ci-${{ matrix.config.target }}- | |
- name: 🔧 Check | |
env: | |
CARGO_TARGET_DIR: ${{ matrix.config.target_dir }} | |
run: cargo clippy --target ${{ matrix.config.target }} --locked -- -W clippy::correctness -D warnings |