From 18f306045c170c2118df8b571815a04c6d46d895 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Sat, 12 Nov 2022 21:04:06 +0200 Subject: [PATCH] ci: add a bit of Github workflows (#189) Might as well do it, as I also just pushed first and tested later. Signed-off-by: Alexandru Ardelean Signed-off-by: Alexandru Ardelean --- .github/workflows/build.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..64f6646 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +name: Build & run tests + +on: + push: + pull_request: + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run the 'make test' + run: make test