diff --git a/.github/workflows/linux-install.yml b/.github/workflows/linux-install.yml
new file mode 100644
index 0000000000000000000000000000000000000000..81a04e5656d8936fdf9404392f5e713adb814c0f
--- /dev/null
+++ b/.github/workflows/linux-install.yml
@@ -0,0 +1,17 @@
+name: Linux Install and Test
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+    - name: Checkout repository
+      uses: actions/checkout@v2
+
+    - name: Run install-linux.sh
+      run: ./install-linux.sh
+
+    - name: Test Grapp executable
+      run: /opt/grapp/bin/Grapp --version
\ No newline at end of file