diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b581cf..f79e132 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: sudo apt-get install -y libasound2-dev # needed for alsa-sys crate + - name: Install system packages needed by Bevy + run: | + sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev - name: Install Rust toolchain run: cargo + - run: cargo fmt --all -- --check - uses: Swatinem/rust-cache@v2 - run: cargo check