From a433352b675bd6a258ad97c4f339055f08c443ed Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 22 May 2022 12:23:38 +0900 Subject: [PATCH] Move runs-on under strategy --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98256f1a..9c3c8b4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,13 +4,13 @@ on: [push, pull_request] jobs: build: - runs-on: ${{ matrix.os }} - strategy: matrix: os: [ubuntu-22.04, macos-11] compiler: [gcc, clang] + runs-on: ${{ matrix.os }} + steps: - uses: actions/checkout@v3 - name: Linux setup