Skip to content

Commit c42ecde

Browse files
authored
Add more architectures to CI (#56)
* Add more architectures to CI Add Windows and Mac, and 32-bit as well. * Update ci.yml
1 parent 3fe557e commit c42ecde

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/ci.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
version: ['1.6', '1'] # Test against LTS and current minor release
15-
os: [ubuntu-latest]
16-
arch: [x64]
17-
include:
18-
# Also test against 32-bit Linux on LTS.
19-
- version: '1.6'
20-
os: ubuntu-latest
14+
version: ['1.6', '1', 'nightly'] # Test against LTS, current minor release, and nightly
15+
os:
16+
- ubuntu-latest
17+
- macOS-latest
18+
- windows-latest
19+
arch:
20+
- x64
21+
- x86
22+
exclude:
23+
- os: macOS-latest
2124
arch: x86
2225
steps:
2326
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)