From 9a79c3d9816522c1298698fb9e81309bdad08e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 13 Nov 2020 00:27:46 +0100 Subject: [PATCH] Remove 32-bit macOS --- .github/workflows/ci.yml | 41 ++++++++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c43c371..76bc01d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,16 +11,37 @@ jobs: strategy: fail-fast: false matrix: - version: - - '1' - - 'nightly' - os: - - ubuntu-latest - - macOS-latest - - windows-latest - arch: - - x64 - - x86 + include: + - version: '1' + os: ubuntu-latest + arch: x64 + - version: '1' + os: macOS-latest + arch: x64 + - version: '1' + os: windows-latest + arch: x64 + - version: '1' + os: ubuntu-latest + arch: x86 + - version: '1' + os: windows-latest + arch: x86 + - version: 'nightly' + os: ubuntu-latest + arch: x64 + - version: 'nightly' + os: macOS-latest + arch: x64 + - version: 'nightly' + os: windows-latest + arch: x64 + - version: 'nightly' + os: ubuntu-latest + arch: x86 + - version: 'nightly' + os: windows-latest + arch: x86 steps: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1