Restore all OS in pipeline

This commit is contained in:
Alex Root Junior 2021-05-12 23:31:37 +03:00
parent 73028e7a11
commit 782102561e

View file

@ -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