diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..75b677b --- /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: |+ + apk update + apk add build-base automake autoconf libtool texinfo + + - name: Configure + shell: bash + run: bash ./autogen.sh + + - name: Test + shell: bash + env: + VERBOSE: 1 + run: make -e -j3 check