Skip to content

Change github workflow to run test #1

Change github workflow to run test

Change github workflow to run test #1

Workflow file for this run

name: camlgrad Unit Tests

Check failure on line 1 in .github/workflows/unit-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit-test.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
run-name: camlgrad Unit Tests 🚀
on: [push]
jobs:
build:
strategy:
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 . --deps-only --with-test
- run: opam exec -- dune build
- run: opam exec -- dune test
- run: echo "🍏 This job's status is ${{ job.status }}."