diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..7da4c37 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,21 @@ +name: "bashdb CI" +on: + push: + +jobs: + linux: + name: "Linux" + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Configure + shell: bash + run: sh ./autogen.sh + + - name: Test + shell: bash + env: + CIRCLECI: 1 + run: make check