Skip to content

Commit

Permalink
Split CI jobs into Build and Test
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoRiether committed Jun 13, 2024
1 parent 44b2877 commit 681c666
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,20 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install ALSA (for MIDI support)
run: sudo apt-get install libasound2-dev
- name: Check clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install ALSA (for MIDI support)
run: sudo apt-get install libasound2-dev
- name: Check clippy
run: cargo clippy
- name: Run tests
run: cargo test --verbose

0 comments on commit 681c666

Please sign in to comment.