From f570ad976d58858f7762148766865f6a82d7a4d4 Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Mon, 28 Sep 2020 12:52:07 -0300 Subject: [PATCH] Run only on Ubuntu with Python 3.8 --- .github/workflows/continuous-integration.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 08c4f0f68..8cd491830 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -35,16 +35,14 @@ jobs: # run all of them to catch failures in different combinations. fail-fast: false matrix: - os: [ubuntu, macos] - python: [3.6, 3.7, 3.8] + os: [ubuntu] + python: [3.8] # If "optional", will install non-required dependencies in the build # environment. Otherwise, only required dependencies are installed. dependencies: [""] include: - os: ubuntu python: 3.8 - - os: macos - python: 3.8 env: CONDA_REQUIREMENTS: requirements.txt CONDA_REQUIREMENTS_DEV: requirements-dev.txt