Skip to content

Commit

Permalink
chore(ci): Add Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Tkachenko authored and Stranger6667 committed Feb 14, 2020
1 parent 342149d commit 17caaa9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -66,10 +66,11 @@ jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: [3.6, 3.7, 3.8]

name: tests_${{ matrix.python }}
runs-on: ubuntu-latest
name: ${{ matrix.os }}/tests_${{ matrix.python }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
with:
Expand Down Expand Up @@ -101,14 +102,15 @@ jobs:
hypothesis-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
tox_job:
- py3-hypothesis-4.40
- py3-hypothesis-4.50
- py3-hypothesis-5.0
- py3-hypothesis-5.1

name: tests_${{ matrix.tox_job }}
runs-on: ubuntu-latest
name: ${{ matrix.os }}/tests_${{ matrix.tox_job }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
with:
Expand Down

0 comments on commit 17caaa9

Please sign in to comment.