Commit b231249 1 parent d4f792d commit b231249 Copy full SHA for b231249
File tree 2 files changed +36
-1
lines changed
2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
timeout-minutes : 15
13
13
container :
14
- image : swift:5.10
14
+ image : swift:latest
15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v4
Original file line number Diff line number Diff line change
1
+ name : Verify Documentation
2
+
3
+ on :
4
+ pull_request :
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.ref }}-verifydocs
7
+ cancel-in-progress : true
8
+
9
+ jobs :
10
+ linux :
11
+ runs-on : ubuntu-latest
12
+ timeout-minutes : 15
13
+ container :
14
+ image : swift:latest
15
+ steps :
16
+ - name : Install rsync 📚
17
+ run : |
18
+ apt-get update && apt-get install -y rsync bc
19
+ - name : Checkout
20
+ uses : actions/checkout@v4
21
+ with :
22
+ fetch-depth : 0
23
+ path : " package"
24
+ - name : Checkout
25
+ uses : actions/checkout@v4
26
+ with :
27
+ repository : " hummingbird-project/hummingbird-docs"
28
+ fetch-depth : 0
29
+ path : " documentation"
30
+ - name : Verify
31
+ run : |
32
+ cd documentation
33
+ swift package edit ${GITHUB_REPOSITORY#*/} --path ../package
34
+ ./scripts/build-docc.sh -e
35
+
You can’t perform that action at this time.
0 commit comments