We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ce3089 commit 3800418Copy full SHA for 3800418
.github/workflows/ci.yml
@@ -4,10 +4,24 @@ on: [push]
4
5
jobs:
6
build:
7
- runs-on: ${{ matrix.operating-system }}
+ runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- operating-system: [ubuntu-latest, windows-latest]
+ os: [ubuntu-latest, windows-latest, macOS-latest]
11
+ rust: [stable, nightly]
12
+ include:
13
+ - os: macOS-latest
14
+ rust: 'stable'
15
+ components: 'rustfmt, clippy'
16
+ targets: 'x86_64-apple-darwin'
17
+ - os: windows-latest
18
19
20
+ targets: 'x86_64-pc-windows-msvc'
21
+ - os: ubuntu-latest
22
23
24
+ targets: 'x86_64-unknown-linux-musl'
25
26
steps:
27
- uses: actions/checkout@v1
0 commit comments