Skip to content

Commit

Permalink
ci: Restrict OS for versions
Browse files Browse the repository at this point in the history
  • Loading branch information
liyishuai committed Jul 15, 2024
1 parent f1ca1a8 commit d8a6c0f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
36 changes: 25 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,36 @@ jobs:
- ubuntu-latest
- windows-latest
ocaml-version:
- 4.02.x
- 4.03.x
- 4.04.x
- 4.05.x
- 4.06.x
- 4.07.x
- 4.08.x
- 4.09.x
- 4.10.x
- 4.11.x
- 4.12.x
- 4.13.x
- 4.14.x
- 5.0.x
- 5.1.x
- 5.2.x
include:
- os: ubuntu-latest
ocaml-version: 4.02.x
- os: ubuntu-latest
ocaml-version: 4.03.x
- os: ubuntu-latest
ocaml-version: 4.04.x
- os: ubuntu-latest
ocaml-version: 4.05.x
- os: ubuntu-latest
ocaml-version: 4.06.x
- os: ubuntu-latest
ocaml-version: 4.07.x
- os: ubuntu-latest
ocaml-version: 4.08.x
- os: ubuntu-latest
ocaml-version: 4.09.x
- os: ubuntu-latest
ocaml-version: 4.10.x
- os: ubuntu-latest
ocaml-version: 4.11.x
- os: ubuntu-latest
ocaml-version: 4.12.x
- os: macos-latest
ocaml-version: 4.12.x

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit d8a6c0f

Please sign in to comment.