Update run_pytest.yml

This commit is contained in:
Bastian Schroll 2019-09-22 17:39:39 +02:00 committed by GitHub
parent 23b19c0e0f
commit 012a1dceb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,18 +5,18 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
max-parallel: 4
matrix:
python-version: [3.5, 3.6, 3.7]
os: [ubuntu-latest, windows-latest]
python-version: [3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{matrix.python-version}} at ${{matrix.os}}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip