diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c71660b5..a0730966 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,23 +10,26 @@ on: jobs: build: - defaults: - run: - shell: bash - runs-on: ${{ matrix.os }} strategy: max-parallel: 6 fail-fast: true matrix: os: -# - ubuntu-latest -# - macos-latest + - ubuntu-latest + - macos-latest - windows-latest python-version: - 3.7 - 3.8 - 3.9 + defaults: + # Windows is sucks. Force use bash instead of PowerShell + run: + shell: bash + + runs-on: ${{ matrix.os }} + steps: - uses: actions/checkout@master