Skip to content

Commit b0ea714

Browse files
authored
Basic Github action for building and testing pyret-lang
1 parent 6f0af4a commit b0ea714

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/build-and-test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Makefile CI
2+
3+
on:
4+
push:
5+
branches: [ "horizon" ]
6+
pull_request:
7+
branches: [ "horizon" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/[email protected]
18+
with:
19+
node-version: 18
20+
21+
- name: udpate and install
22+
run: |
23+
npm update
24+
make install
25+
26+
- name: build
27+
run: make
28+
29+
- name: run tests
30+
run: make all-pyret-test

0 commit comments

Comments
 (0)