commit 58f0b2be9d4ccaca771e8ae6e90ff4cf6625d8cb parent 996762e4aa23e5fe6d7bcd79856258d3ea9148f1 Author: Raymond Li <hi@raymond.li> Date: Sun, 8 Mar 2020 15:39:37 -0400 Remove paths and rename Diffstat:
| A | .github/workflows/Build Test.yml | | | 25 | +++++++++++++++++++++++++ |
| D | .github/workflows/ccpp.yml | | | 33 | --------------------------------- |
2 files changed, 25 insertions(+), 33 deletions(-) diff --git a/.github/workflows/Build Test.yml b/.github/workflows/Build Test.yml @@ -0,0 +1,25 @@ +name: Build Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: autoreconf + run: autoreconf --force --install + - name: configure + run: ./configure --disable-sanitizers + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml @@ -1,33 +0,0 @@ -name: Build Test - -on: - push: - branches: [ master ] - paths: - - '!**.md' - - '!LICENSE' - - '!.gitignore' - pull_request: - branches: [ master ] - paths: - - '!**.md' - - '!LICENSE' - - '!.gitignore' - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: autoreconf - run: autoreconf --force --install - - name: configure - run: ./configure --disable-sanitizers - - name: make - run: make - - name: make check - run: make check - - name: make distcheck - run: make distcheck
