Skip to content

camlgrad Unit Tests 🚀 #5

camlgrad Unit Tests 🚀

camlgrad Unit Tests 🚀 #5

Workflow file for this run

name: camlgrad Unit Tests
run-name: camlgrad Unit Tests 🚀
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: Set-up OCaml "5.1"
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "5.1"
- run: opam install ctypes-foreign alcotest ocamlgraph
- run: opam exec -- dune build
- run: opam exec -- dune test
- run: echo "🍏 This job's status is ${{ job.status }}."