From dcc28da4c84285a9ca0cb6cb4145641a2649db56 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Wed, 15 Apr 2020 10:45:52 +0200 Subject: [PATCH] Add macos-latest --- .github/workflows/ccpp.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 81740b7..f7eea8d 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1,15 +1,14 @@ name: C/C++ CI -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: build: + strategy: + matrix: + os: [ubuntu-latest, macos-latest] - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2