Skip to content

Commit

Permalink
CI: Improve ci experience with devbox check
Browse files Browse the repository at this point in the history
  • Loading branch information
guerinoni committed Dec 5, 2024
1 parent 156efd7 commit 481c402
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/rust.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,19 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build
- name: Run tests
run: |
cd advent-of-code-2024
cargo build --verbose
- name: Run tests
cargo test --verbose
devbox:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/[email protected]
- name: Test
run: |
cd advent-of-code-2024
cargo test --verbose
devbox run test

0 comments on commit 481c402

Please sign in to comment.