-
Notifications
You must be signed in to change notification settings - Fork 42
93 lines (73 loc) · 2.04 KB
/
checks.yml
File metadata and controls
93 lines (73 loc) · 2.04 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: checks
on:
push:
branches: [main]
pull_request: {}
workflow_dispatch: {}
env:
FOUNDRY_PROFILE: ci
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node environment
uses: ./.github/actions/setup
- name: Run linter
run: yarn lint
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node environment
uses: ./.github/actions/setup
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Check if docs are up to date
run: yarn docgen:test
tests:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node environment
uses: ./.github/actions/setup
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run Forge version
run: |
forge --version
id: version
- name: Run tests
run: |
yarn test
id: test
dispatch:
runs-on: ubuntu-latest
needs: [lint, docs, tests]
if: success()
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 2
- name: Check for changes in the `docs/` folder
id: check_changes
run: |
git fetch origin main
[ -n "$(git diff --name-only HEAD^ HEAD -- docs/)" ] && echo "SHOULD_TRIGGER_DOC_UPDATE=true" >> $GITHUB_ENV || true
- name: Trigger repository_dispatch
if: env.SHOULD_TRIGGER_DOC_UPDATE == 'true'
run: |
curl -X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.OZ_UPGRADE_TRIGGER_TOKEN }}" \
https://api.github.com/repos/OpenZeppelin/openzeppelin-upgrades/dispatches \
-d '{"event_type":"update-foundry-submodule-docs"}'