Skip to content

Commit 4adfc99

Browse files
authored
debug github actions
1 parent ecdb73a commit 4adfc99

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,20 @@ on:
1717
jobs:
1818
build:
1919

20-
runs-on:
21-
- ubuntu-latest
22-
- macos-latest
20+
runs-on: ${{ matrix.os }}
2321
strategy:
2422
matrix:
23+
os: [macos-latest, ubuntu-latest]
24+
include:
25+
- os: macos-latest
26+
TARGET: x86_64-apple-darwin
27+
COMPILER: clang
28+
LINKER: clang
29+
30+
- os: ubuntu-latest
31+
TARGET: x86_64-unknown-linux-musl
32+
COMPILER: gcc
33+
LINKER: gcc
2534
python-version: [3.6, 3.7, 3.8, 3.9]
2635

2736
steps:

0 commit comments

Comments
 (0)