-
Notifications
You must be signed in to change notification settings - Fork 88
36 lines (28 loc) · 902 Bytes
/
indentation.yml
File metadata and controls
36 lines (28 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: indentation
on:
push:
pull_request:
workflow_dispatch:
jobs:
indentation:
strategy:
matrix:
os:
- ubuntu-22.04 # https://github.com/ocaml/setup-ocaml/issues/872
ocaml-compiler:
- 4.14.x
runs-on: ${{ matrix.os }}
if: ${{ !github.event.forced && github.event.before != '0000000000000000000000000000000000000000' }}
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install ocp-indent
run: opam install -y ocp-indent
- name: Run pre-commit hook on changes since last push
run: git reset --soft ${{ github.event.before }} && eval $(opam env) && ./scripts/hooks/pre-commit