Dummy workflow to enable GitHub Actions

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..f6fc446
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,14 @@
+name: ci
+
+on:
+  workflow_dispatch:
+  push:
+  pull_request:
+
+jobs:
+  dummy:
+    runs-on: ubuntu-latest
+    steps:
+      -
+        name: Checkout
+        uses: actions/checkout@v2
\ No newline at end of file