Skip to content

Commit 421783c

Browse files
authored
Added windows and macos builds to CI (#373)
1 parent 89a1d36 commit 421783c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ env:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
1514
strategy:
1615
matrix:
1716
toolchain: [stable, nightly]
17+
os: [windows-2019, ubuntu-20.04, macos-10.15]
18+
runs-on: ${{ matrix.os }}
1819
steps:
1920
- uses: actions/checkout@v2
2021

@@ -31,6 +32,7 @@ jobs:
3132

3233
- name: Install alsa
3334
run: sudo apt-get install --no-install-recommends libasound2-dev
35+
if: ${{ runner.os == 'Linux' }}
3436

3537
- name: Build
3638
run: cargo check

0 commit comments

Comments
 (0)