Skip to content

Bevy 0.12

Bevy 0.12 #1285

Workflow file for this run

name: "CI"
on:
push:
pull_request:
branches:
- main
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --check --all
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: Swatinem/rust-cache@v2
- run: nix flake check
- run: nix develop -c cargo doc --all-features --no-deps
- run: nix develop -c cargo test --all-features --all-targets