diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..f1cb7d8 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,25 @@ +name: TRDB CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + submodules: true + - name: autoreconf + run: autoreconf -vif + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: ./tests