From 76d54b12f654e15bf8ba8f85819e98507da9856b Mon Sep 17 00:00:00 2001 From: Chunel Date: Wed, 12 Oct 2022 00:13:51 +0800 Subject: [PATCH] Create cmake4ubuntu.yml --- .github/workflows/cmake4ubuntu.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/cmake4ubuntu.yml diff --git a/.github/workflows/cmake4ubuntu.yml b/.github/workflows/cmake4ubuntu.yml new file mode 100644 index 0000000..24914e9 --- /dev/null +++ b/.github/workflows/cmake4ubuntu.yml @@ -0,0 +1,23 @@ +name: CMake4Ubuntu + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck