From 9f2a393c652c8c756dfb2efcb83f6ab6ff90bc8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulysse=20G=C3=A9rard?= Date: Sun, 4 Feb 2024 18:03:19 +0100 Subject: [PATCH] Add tentative github action --- .github/workflows/main.yml | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..76687a4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,43 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [main] + pull_request: + branches: [main] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + - name: Set up OCaml 4.14.x + uses: ocaml/setup-ocaml@v2 + with: + # Version of the OCaml compiler to initialise + ocaml-compiler: 4.14.x + + - name: Install dependencies + run: | + opam install . --deps-only --with-test --yes + + - name: Build in release mode + run: | + opam exec -- dune build --profile=release @default + + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: web # The folder the action should deploy.