Skip to content

Commit

Permalink
Run CI on other operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Jan 15, 2025
1 parent a8b646b commit 1017d9e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if: runner.os == 'Linux'
- name: check
run: cargo check
- name: examples
Expand Down

0 comments on commit 1017d9e

Please sign in to comment.