Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ii8 committed Oct 26, 2023
1 parent 94a10d4 commit 93aaff1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 93aaff1

Please sign in to comment.