Skip to content

Commit

Permalink
feat: update github actions to use new tool
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Jul 5, 2024
1 parent 074b6ca commit 9bdaf26
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ env:

jobs:
check:
name: Check chunk ${{ matrix.chunk }}
name: Check
runs-on: ubuntu-latest
strategy:
# One chunk failing should not cancel another.
fail-fast: false
matrix:
chunk: [1, 2, 3, 4, 5]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -37,7 +32,7 @@ jobs:
uses: Leafwing-Studios/cargo-cache@v1
with:
# Each chunk saves to a separate cache.
cache-group: ${{ github.job }}-${{ matrix.chunk }}
cache-group: ${{ github.job }}
cargo-target-dir: bevy/target

- name: Install Linux dependencies
Expand All @@ -47,4 +42,4 @@ jobs:
sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- name: Check all features
run: cargo run -- bevy
run: cargo run -- --manifest-path bevy/Cargo.toml --config config

0 comments on commit 9bdaf26

Please sign in to comment.