From ad8503301af6e641d060b457f31505f8e649775d Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sat, 14 Dec 2019 00:04:53 +0800 Subject: [PATCH] fix: github actions --- .github/workflows/integration_test.yml | 9 +++++---- .github/workflows/unittest.yml | 10 +++++----- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 1447ab9d..8715aae2 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -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: diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index c2da1ce4..efaea680 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -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: