Add test.sh and related GHA check #10
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
# AUTOGENERATED FROM build-and-test.jsonnet DO NOT MODIFY | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.02.1 | |
- name: Install dependencies | |
run: | | |
echo No dependencies! This is xix! It does not need anything! | |
- name: Build mk/rc | |
run: | | |
eval $(opam env) | |
./bootstrap-mk.sh | |
- name: Basic test | |
run: | | |
./test.sh | |
name: build-and-test | |
on: | |
pull_request: null | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: 59 12 * * * | |
workflow_dispatch: null |