diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index beb18a3f..7fa4b55d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,16 @@ jobs: strategy: matrix: os: [ubuntu-16.04, macos-latest, windows-latest] + python: [2.7, '3.x'] + exclude: + - os: macos-latest + python: '3.x' + - os: windows-latest + python: '3.x' steps: - uses: actions/setup-python@v1 with: - python-version: '2.7' + python-version: ${{ matrix.python }} - uses: actions/checkout@v1 with: submodules: true |