Fine-grained midi resource allocation #101
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| rust: [stable] | |
| steps: | |
| - if: matrix.os == 'ubuntu-latest' | |
| name: 'Install dependencies (ubuntu)' | |
| run: | | |
| sudo apt update | |
| sudo apt install libudev-dev libasound2-dev libsdl2-dev libsdl2-ttf-dev libsdl2-gfx-dev | |
| - uses: hecrj/setup-rust-action@v1 | |
| with: | |
| rust-version: ${{ matrix.rust }} | |
| - uses: actions/checkout@master | |
| - run: | | |
| cargo test --release | |
| cargo test --release --all-features |