From 93aaff10239f6b5e348ebdd89add5e6ef929e444 Mon Sep 17 00:00:00 2001 From: Murray Date: Thu, 26 Oct 2023 12:39:50 +0100 Subject: [PATCH] test --- .github/workflows/build | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build diff --git a/.github/workflows/build b/.github/workflows/build new file mode 100644 index 0000000..66917a4 --- /dev/null +++ b/.github/workflows/build @@ -0,0 +1,30 @@ +name: CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + workflow_dispatch: + +jobs: + build: + runs-on: alpine-latest + + steps: + - uses: actions/checkout@v3 + + - name: Install prerequisites + run: | + apk --no-cache add make m4 docker + + - name: Install gren + run: | + wget https://github.com/gren-lang/compiler/releases/download/0.3.0/gren_linux + chmod +x gren_linux + mv gren_linux /usr/local/bin + + - name: Build + run: | + make benchmark + make