Skip to content

Commit 1af6f4a

Browse files
committed
Update docs
Signed-off-by: Sora Morimoto <sora@morimoto.io>
1 parent 8b05d5f commit 1af6f4a

File tree

6 files changed

+30
-29
lines changed

6 files changed

+30
-29
lines changed

EXAMPLES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set-up OCaml
3939
uses: ocaml/setup-ocaml@v3
4040
with:
41-
ocaml-compiler: "5.2"
41+
ocaml-compiler: 5
4242

4343
- name: Install dependencies
4444
run: opam install . --deps-only --with-doc
@@ -106,7 +106,7 @@ steps:
106106
- name: Set-up OCaml
107107
uses: ocaml/setup-ocaml@v3
108108
with:
109-
ocaml-compiler: "5.2"
109+
ocaml-compiler: 5
110110
cache-prefix: v1-${{ matrix.container }}
111111
opam-disable-sandboxing: true
112112
```

README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ methods to do this.
2121
name: Builds, tests & co
2222

2323
on:
24-
pull_request:
25-
push:
26-
schedule:
27-
# Prime the caches every Monday
28-
- cron: 0 1 * * MON
24+
- push
25+
- pull_request
2926

3027
permissions: read-all
3128

@@ -35,8 +32,8 @@ jobs:
3532
fail-fast: false
3633
matrix:
3734
os:
38-
- macos-latest
3935
- ubuntu-latest
36+
- macos-latest
4037
- windows-latest
4138

4239
runs-on: ${{ matrix.os }}
@@ -48,7 +45,7 @@ jobs:
4845
- name: Set-up OCaml
4946
uses: ocaml/setup-ocaml@v3
5047
with:
51-
ocaml-compiler: "5.2"
48+
ocaml-compiler: 5
5249

5350
- run: opam install . --deps-only --with-test
5451

@@ -123,6 +120,7 @@ Examples:
123120
- Exact package name: `ocaml-base-compiler.5.2.0`
124121
- Combine multiple packages:
125122
`ocaml-variants.5.2.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static`
123+
- Major versions: `4`, `5`
126124
- Minor versions: `4.08`, `4.14`, `5.2`, `5.2.x`
127125
- More specific versions: `~4.02.2`, `5.1.0`
128126

analysis/README.md

+17-5
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,32 @@
55
### Example workflow
66

77
```yml
8+
name: Opam Dependency Submission
9+
10+
on:
11+
push:
12+
branches:
13+
- main
14+
15+
concurrency:
16+
group: opam-dependency-submission
17+
cancel-in-progress: true
18+
19+
permissions: read-all
20+
821
jobs:
922
opam-dependency-submission:
23+
permissions:
24+
contents: write
1025
runs-on: ubuntu-latest
1126
steps:
1227
- name: Checkout tree
1328
uses: actions/checkout@v4
14-
1529
- name: Set-up OCaml
1630
uses: ocaml/setup-ocaml@v3
1731
with:
18-
ocaml-compiler: "5.2"
19-
20-
- name: Opam Dependency Submission
21-
uses: ocaml/setup-ocaml/analysis@v3
32+
ocaml-compiler: 5
33+
- uses: ocaml/setup-ocaml/analysis@v3
2234
```
2335
2436
## Inputs

lint-doc/README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ jobs:
1111
steps:
1212
- name: Checkout tree
1313
uses: actions/checkout@v4
14-
1514
- name: Set-up OCaml
1615
uses: ocaml/setup-ocaml@v3
1716
with:
18-
ocaml-compiler: "5.2"
19-
20-
- name: Lint doc
21-
uses: ocaml/setup-ocaml/lint-doc@v3
17+
ocaml-compiler: 5
18+
- uses: ocaml/setup-ocaml/lint-doc@v3
2219
```
2320
2421
## Inputs

lint-fmt/README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout tree
1616
uses: actions/checkout@v4
17-
1817
- name: Set-up OCaml
1918
uses: ocaml/setup-ocaml@v3
2019
with:
21-
ocaml-compiler: "5.2"
22-
23-
- name: Lint fmt
24-
uses: ocaml/setup-ocaml/lint-fmt@v3
20+
ocaml-compiler: 5
21+
- uses: ocaml/setup-ocaml/lint-fmt@v3
2522
```
2623
2724
## Inputs

lint-opam/README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ jobs:
1111
steps:
1212
- name: Checkout tree
1313
uses: actions/checkout@v4
14-
1514
- name: Set-up OCaml
1615
uses: ocaml/setup-ocaml@v3
1716
with:
18-
ocaml-compiler: "5.2"
19-
20-
- name: Lint opam
21-
uses: ocaml/setup-ocaml/lint-opam@v3
17+
ocaml-compiler: 5
18+
- uses: ocaml/setup-ocaml/lint-opam@v3
2219
```
2320
2421
## Inputs

0 commit comments

Comments
 (0)