Skip to content

Commit

Permalink
Add gh test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-byrne committed Sep 20, 2024
1 parent 844665b commit 1d69eed
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/run-sml-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run SMLUnit Unit Tests

on:
push:
branches:
- master
- dev
pull_request:

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install SML#
run: |
sudo apt-get update
sudo apt-get install smlnj # Install SML/NJ
sudo apt-get install smlsharp # Install SML#
- name: Run SML tests
run: |
chmod +x test
./test

0 comments on commit 1d69eed

Please sign in to comment.