Skip to content

Commit

Permalink
ci: fix checking on all OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshiew committed Dec 5, 2024
1 parent ad3a3ed commit d05024f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,19 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: RUSTDOCFLAGS="-Dwarnings" cargo doc --document-private-items --no-deps --all-features
check:
runs-on: [ubuntu-24.04, windows-2022, macos-15]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-24.04
- windows-2022
- macos-15
needs: lint
steps:
- uses: actions/checkout@v4
- run: rustup show
- name: Install system packages needed by Bevy
if: runner.os == 'Linux'
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev
- uses: Swatinem/rust-cache@v2
Expand Down

0 comments on commit d05024f

Please sign in to comment.