From fba0e92eef2f49f7318d7a18e3e6b7b04d16de80 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 23 Feb 2021 15:34:58 +0800 Subject: Update and rename ccpp.yml to macos.yml --- .github/workflows/ccpp.yml | 15 --------------- .github/workflows/macos.yml | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 15 deletions(-) delete mode 100644 .github/workflows/ccpp.yml create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml deleted file mode 100644 index 8a1c1de..0000000 --- a/.github/workflows/ccpp.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: build-test - -on: [push] - -jobs: - test: - name: Build & Test - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macOS-latest] - steps: - - uses: actions/checkout@v1 - - name: build-test - run: make test diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..c0dabf6 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,17 @@ +name: macOS + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + name: Build & Test + runs-on: macos-latest + steps: + - uses: actions/checkout@v1 + - name: build-test + run: make test -- cgit v1.2.3-55-g6feb