We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0af4a commit b0ea714Copy full SHA for b0ea714
.github/workflows/build-and-test.yml
@@ -0,0 +1,30 @@
1
+name: Makefile CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "horizon" ]
6
+ pull_request:
7
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