Skip to content

Migrate bevy from 0.9 -> 0.15 #52

Migrate bevy from 0.9 -> 0.15

Migrate bevy from 0.9 -> 0.15 #52

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
override: true
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Check
run: cargo check
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --check