From a7905b373e614f22b94bd350aebc4bec33b9bdf0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 11 Oct 2021 16:00:09 +0300 Subject: [PATCH] Skip CI for macOS & Py 3.6 --- .github/workflows/core.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 6f21021a..7ee26aac 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -9,13 +9,16 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] python-version: [3.6, 3.7, 3.8, 3.9] + exclude: + - os: macos-latest + python-version: '3.6' runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 with: submodules: "recursive" - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies