Merge pull request #24 from QURIresearch/github-actions

Add GitHub Actions to Squiggle Lang
This commit is contained in:
Ozzie Gooen 2022-02-17 22:08:37 -05:00 committed by GitHub
commit 0e8bfe7a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/lang-jest.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Squiggle Lang Jest Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: packages/squiggle-lang
steps:
- uses: actions/checkout@v2
- name: Install Packages
run: yarn
- name: Build rescript
run: yarn rescript build -with-deps
- name: Run tests
run: yarn test