From e06a445183d1e54682b3690fe057d1debc17a2f1 Mon Sep 17 00:00:00 2001 From: Michael Brunner Date: Thu, 30 May 2024 20:16:28 +0200 Subject: [PATCH] ENH: build os matrix --- .github/workflows/build-matrix.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-matrix.yml b/.github/workflows/build-matrix.yml index 769c336d..90018a47 100644 --- a/.github/workflows/build-matrix.yml +++ b/.github/workflows/build-matrix.yml @@ -10,14 +10,14 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest ] # windows-latest , ubuntu-latest, macos-latest + os: [ ubuntu-latest, ubuntu-latest, macos-latest ] include: -# - os: windows-latest -# compiler: msvc + - os: windows-latest + compiler: msvc - os: ubuntu-latest compiler: gcc -# - os: macos-latest -# compiler: clang + - os: macos-latest + compiler: clang steps: - name: Checkout code uses: actions/checkout@v4.1.4