fix: github actions

This commit is contained in:
debugtalk
2019-12-14 00:04:53 +08:00
parent 97d7d595ca
commit ad8503301a
2 changed files with 10 additions and 9 deletions

View File

@@ -3,13 +3,14 @@ name: integration_test
on: [push]
jobs:
integration test on ${{ matrix.os_type }} and ${{ matrix.python-version }}:
integration test:
runs-on: ${{ matrix.os_type }}
name: Test on ${{ matrix.os }} and ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
max-parallel: 15
matrix:
os_type: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:

View File

@@ -3,13 +3,13 @@ name: unittest
on: [push]
jobs:
unittest on ${{ matrix.os_type }} and ${{ matrix.python-version }}:
runs-on: ${{ matrix.os_type }}
unittest:
name: Test on ${{ matrix.os }} and ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
max-parallel: 15
matrix:
os_type: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps: