Group tests with similar duration together

Style and documentation tests take just a few minutes
to run. Since in Github actions one can't restart a single
job but needs to restart an entire workflow, here we group
tests with similar duration together.
This commit is contained in:
Massimiliano Culpo
2020-07-28 15:31:22 +02:00
committed by Peter Scheibel
parent 90648bb477
commit 1f7f076189
4 changed files with 72 additions and 76 deletions

View File

@@ -11,18 +11,12 @@ on:
- releases/**
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: 3.7
- name: Install Python packages
run: |
pip install --upgrade pip six setuptools