-
Notifications
You must be signed in to change notification settings - Fork 4.2k
62 lines (60 loc) · 1.57 KB
/
pre-commit.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: pre-commit
on:
pull_request:
push:
branches:
- main
- develop
- 'release/**'
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.10.x
- uses: ruby/setup-ruby@v1
env:
ImageOS: ubuntu20
with:
ruby-version: '2.7'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.202'
- name: Install manual dependencies
run: |
python -m pip install pre-commit
pre-commit install
- name: Run pre-commit
run: |
pre-commit run --all-files
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.10.x
- uses: actions/setup-node@v4
with:
node-version: '12'
- name: Install manual dependencies
# pin markdown-link-check version to support multi-level reference link
run: |
sudo npm install -g [email protected]
python -m pip install pre-commit
pre-commit install
- name: Run markdown checker
run: |
pre-commit run --hook-stage manual markdown-link-check --all-files
validate-meta-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.10.x
- run: python utils/validate_meta_files.py