We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66991b commit f6f558dCopy full SHA for f6f558d
1 file changed
.github/workflows/build-and-test.yml
@@ -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