See if grouping works #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.github.com/en/actions/using-jobs/running-jobs-in-a-container | |
name: Run Tests | |
on: | |
push: | |
branches: | |
- master | |
- jcreed/ci-test-experiment2 | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: jcreed/mlton-twelf-ci:latest # built from https://github.com/jcreedcmu/docker-mlton | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: cd TEST && ./regression.sh |