Skip to content

Commit

Permalink
Add Github Actions (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
fraya authored Apr 13, 2022
1 parent e66991b commit f6f558d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build-and-test

on:
push:
# all branches
pull_request:
branches:
- main
- master

# This enables the Run Workflow button on the Actions tab.
workflow_dispatch:

jobs:
build-and-test:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- uses: dylan-lang/install-opendylan@v2

- name: Build binary-data-test
run: ./dylan-compiler -build binary-data-test

- name: Run binary-data-tests-test
run: _build/bin/binary-data-test

0 comments on commit f6f558d

Please sign in to comment.