From 2b16d0d8a6bead5bcc2125b890bf1a13d19602dc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 10 Nov 2024 15:31:03 +0100 Subject: Adding upstream version 1.9.14. Signed-off-by: Daniel Baumann --- .github/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yaml (limited to '.github') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..42ee8ce --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: Continuous Integration + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: reconfigure + run: autoreconf -fi + - name: configure + run: ./configure --prefix="/usr" + - name: make + run: make + - name: make check + run: make check + - name: make install + run: sudo make install -- cgit v1.2.3