From d668a3658b49dc3a6a345c0881b000be916ceae7 Mon Sep 17 00:00:00 2001 From: D Smith <151718823+Jackblanket847@users.noreply.github.com> Date: Thu, 19 Sep 2024 12:39:11 -0500 Subject: [PATCH] Create .html --- .github/workflows/c-cpp/.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp/.html diff --git a/.github/workflows/c-cpp/.html b/.github/workflows/c-cpp/.html new file mode 100644 index 000000000000..fbf32ec92d3b --- /dev/null +++ b/.github/workflows/c-cpp/.html @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck