From 82340e87faf418f555ca5702b14c90f35820ec35 Mon Sep 17 00:00:00 2001 From: Christian Rebischke Date: Sat, 12 Oct 2019 15:29:12 +0200 Subject: [PATCH] add Github Actions Signed-off-by: Christian Rebischke --- .github/workflows/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..9d120d3 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,12 @@ +name: Github-Actions + +on: [push, pull_request] + +jobs: + ci-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: make ci-test + run: make ci-test