From 85fc0ea57c029ef396b2714cc51ed27c299cc410 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 1 Jul 2026 18:43:59 +0100 Subject: [PATCH] Add a test for regress. --- .github/workflows/regress.yml | 45 +++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/regress.yml diff --git a/.github/workflows/regress.yml b/.github/workflows/regress.yml new file mode 100644 index 000000000..10ed437f8 --- /dev/null +++ b/.github/workflows/regress.yml @@ -0,0 +1,45 @@ +name: 'Run Tests' + +on: + workflow_dispatch: + schedule: + - cron: '33 3 * * *' + +permissions: + contents: read + +concurrency: + group: tmux-tests + cancel-in-progress: true + +jobs: + regress: + runs-on: ubuntu-latest + timeout-minutes: 30 + + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: dependencies + run: | + sudo apt-get update + sudo apt-get install -y \ + autoconf \ + automake \ + bison \ + build-essential \ + libevent-dev \ + libncurses-dev \ + pkg-config + + - name: build + run: | + sh autogen.sh + ./configure + make -j"$(nproc)" + + - name: test + run: | + cd regress + make