From 6675f4b3f45ead6b028202ae7b27983382157389 Mon Sep 17 00:00:00 2001 From: Ben Daws Date: Thu, 24 Oct 2024 10:04:03 -0500 Subject: [PATCH] misc: testing for ubuntu --- .github/workflows/makefile.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/makefile.yml diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml new file mode 100644 index 0000000..09de86e --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,27 @@ +name: tests-ubuntu + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: install + run: make install + + - name: testing + run: make tests + + - name: Run check + run: make check + + - name: Run distcheck + run: make distcheck