[readme] Improve formatting of install entries #1708
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
name: Github CI | |
on: | |
push: | |
branches: | |
- main | |
- v8.17 | |
- v8.16 | |
- v8.15 | |
pull_request: | |
branches: | |
- main | |
- v8.17 | |
- v8.16 | |
- v8.15 | |
# Cancels previous runs of the same workflow | |
concurrency: | |
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
ocaml: 4.14.x | |
- os: ubuntu-latest | |
ocaml: 4.13.x | |
- os: ubuntu-latest | |
ocaml: 4.12.x | |
- os: ubuntu-latest | |
ocaml: 4.11.x | |
- os: ubuntu-latest | |
ocaml: 5.0.x | |
- os: macos-latest | |
ocaml: 4.14.x | |
- name: Windows Latest | |
ocaml: 4.14 | |
os: windows-latest | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 45 | |
steps: | |
- name: 🔭 Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 🐫 Setup OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml }} | |
dune-cache: true | |
- name: 🐫🐪🐫 Get dependencies | |
run: opam exec -- make opam-deps | |
- name: 🐛 Test coq-lsp | |
if: matrix.os == 'windows-latest' | |
run: opam exec -- make winconfig | |
- name: 🧱 Build coq-lsp | |
run: opam exec -- make build | |
- name: 🐛 Test coq-lsp | |
run: opam exec -- make test | |
- name: 🐛 Test fcc | |
run: opam exec -- make test-compiler | |
build-nix: | |
name: Nix | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 🔭 Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: ❄️ Setup Nix | |
uses: cachix/install-nix-action@v22 | |
- name: 🧱 Build coq-lsp | |
run: nix build .?submodules=1 | |
client-compile: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./editor/code | |
steps: | |
- name: 🔭 Checkout code | |
uses: actions/checkout@v3 | |
- name: 🚀 Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- run: npx --yes @vscode/vsce ls | |
nix-flake-check: | |
name: Nix Flake Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🔭 Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: ❄️ Setup Nix | |
uses: cachix/install-nix-action@v18 | |
- name: 📐 Run flake check | |
run: nix flake check |