Skip to content

Commit f6f558d

Browse files
authored
Add Github Actions (#27)
1 parent e66991b commit f6f558d

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: build-and-test
2+
3+
on:
4+
push:
5+
# all branches
6+
pull_request:
7+
branches:
8+
- main
9+
- master
10+
11+
# This enables the Run Workflow button on the Actions tab.
12+
workflow_dispatch:
13+
14+
jobs:
15+
build-and-test:
16+
runs-on: ubuntu-latest
17+
steps:
18+
19+
- uses: actions/checkout@v2
20+
21+
- uses: dylan-lang/install-opendylan@v2
22+
23+
- name: Build binary-data-test
24+
run: ./dylan-compiler -build binary-data-test
25+
26+
- name: Run binary-data-tests-test
27+
run: _build/bin/binary-data-test

0 commit comments

Comments
 (0)