Skip to content

Commit

Permalink
ci: run on windows and ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma140902 authored Feb 17, 2024
1 parent 0b046a8 commit 7d27749
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ env:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [windows-latest, ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:
- name: Install alsa deps
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libasound2-dev portaudio19-dev build-essential libpulse-dev libdbus-1-dev
- name: Install clippy
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 7d27749

Please sign in to comment.