bevy_vector_shapes 0.12.0

A library for rendering vector shapes using the Bevy game engine
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        os: [windows-latest, ubuntu-latest, macos-latest]

    runs-on: ${{ matrix.os }}

    steps:
    - uses: dtolnay/rust-toolchain@stable
    - uses: actions/checkout@v3
    - uses: actions/cache@v3
      with:
        path: |

          ~/.cargo/bin/
          ~/.cargo/registry/index/
          ~/.cargo/registry/cache/
          ~/.cargo/git/db/
          target/
        key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }}
    - name: Install Bevy dependencies
      run: sudo apt-get update; sudo apt-get install --no-install-recommends g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
      if: runner.os == 'linux'
    - name: Build
      run: cargo build --verbose --workspace --features "bevy/x11"
    - name: Run fmt check
      run: cargo fmt --all -- --check