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