From 782102561e64b4df4eca8ae948589945f06a70bc Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Wed, 12 May 2021 23:31:37 +0300 Subject: [PATCH] Restore all OS in pipeline --- .github/workflows/tests.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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