BevyRenet: better light for simple example #514
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: Main | |
on: | |
push: | |
branches-ignore: | |
- 'releases/**' | |
- 'dependabot/**' | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- '.github/dependabot.yml' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- '.github/dependabot.yml' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libxcb-shape0-dev libxcb-xfixes0-dev | |
- name: Instal latest stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libxcb-shape0-dev libxcb-xfixes0-dev | |
- name: Instal latest stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache crates | |
uses: Swatinem/rust-cache@v2 | |
- name: Clippy | |
run: cargo clippy --no-deps --all-features --examples --tests -- -D warnings | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Format | |
run: cargo fmt --check |