From b56b32db48f3a636b2e118e340f2da9e1746d911 Mon Sep 17 00:00:00 2001 From: Joachim Ansorg Date: Wed, 14 Feb 2024 16:33:38 +0100 Subject: [PATCH] Run tests for bash-4.4 in a Docker container --- .github/workflows/CI.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..da730fe --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,28 @@ +name: "bashdb CI" +on: + push: + +jobs: + linux: + name: "Linux" + runs-on: ubuntu-latest + container: bash:4.4 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Packages + shell: bash + run: |+ + sudo apt -y update + sudo apt -y install autoconf automake texinfo + + - name: Configure + shell: bash + run: sh ./autogen.sh + + - name: Test + shell: bash + env: + VERBOSE: 1 + run: make -e -j3 check