From ac93a02ab0b3c962772e6739347053a473cfd80d Mon Sep 17 00:00:00 2001 From: Kristaps Dz Date: Sat, 18 Nov 2023 13:05:04 -0800 Subject: [PATCH] Create makefile.yml --- .github/workflows/makefile.yml | 15 +++++++++++++++ 1 file changed, 15 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 00000000..60bcc4be --- /dev/null +++ b/.github/workflows/makefile.yml @@ -0,0 +1,15 @@ +name: Makefile CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: sudo apt-get install -y libcurl4-openssl-dev bmake + - name: configure + run: ./configure + - name: Compile + run: make + - name: Run regress + run: make regress