From 799fc08fe0f817f7917cd89acc280f3730bfe88b Mon Sep 17 00:00:00 2001 From: Ethan Robert <ethan.rbrt90@gmail.com> Date: Thu, 13 Mar 2025 10:37:59 +0100 Subject: [PATCH] Added GitHub actions --- .github/workflows/linux-install.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/linux-install.yml diff --git a/.github/workflows/linux-install.yml b/.github/workflows/linux-install.yml new file mode 100644 index 0000000..81a04e5 --- /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 -- GitLab