From 79dca0e4f68684e576f10efeaab8ff740c10b881 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Sun, 7 Jun 2020 19:05:12 -0700 Subject: [PATCH] Fix CI config matrix --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f18ba9..ee46997 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,11 +3,12 @@ name: Test suite on: [push] jobs: - run_unit_tests: - runs-on: [ubuntu-18.04, ubuntu-20.04, macos-10.15] + unit_tests: + runs-on: ${{ matrix.os }} strategy: max-parallel: 8 matrix: + os: [ubuntu-18.04, macos-10.15] python-version: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v1