Skip to content

server: remove architecture specifiers from opam lockfile #4

server: remove architecture specifiers from opam lockfile

server: remove architecture specifiers from opam lockfile #4

Workflow file for this run

name: CN LSP CI
on:
push:
branches:
- sc/ci
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
ocaml-version: [4.14.1]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-version }}
- name: Install server dependencies
working-directory: ./cn-lsp/server
run: opam install . --deps-only --locked -y
- name: Build server
working-directory: ./cn-lsp/server
run: |
eval $(opam env)
dune build
- name: Run server tests
working-directory: ./cn-lsp/server
run: |
eval $(opam env)
dune test