From 971d5e14ae7211b5bf3441cfceb898c0fcbde22f Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 13 Feb 2021 20:36:57 -0500 Subject: [PATCH] only run tests on linux --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc8b575..563318b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,10 +10,9 @@ jobs: - name: Black Check uses: jpetrucciani/black-check@20.8b1 test: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest strategy: matrix: - os: [ubuntu-latest, macos-latest] python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9"] steps: - uses: actions/checkout@v2