From 8f7dde3532ec06b196fe4c6a9d4620e8e26ba533 Mon Sep 17 00:00:00 2001 From: michaelgodlove <146344259+michaelgodlove@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:09:24 +0300 Subject: [PATCH 1/2] Create main.yml --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0a5b877 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1 @@ +hacking From ba770d213cdd72620258ff67cabf711cdb6c4e36 Mon Sep 17 00:00:00 2001 From: michaelgodlove <146344259+michaelgodlove@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:10:15 +0300 Subject: [PATCH 2/2] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..9a6cf18 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ + + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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