We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff6ec7 commit 21723b5Copy full SHA for 21723b5
.github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
-name: ci-push
+name: ci-pr
2
on:
3
- push:
+ pull_request:
4
branches-ignore:
5
- staging
6
- production
@@ -113,3 +113,20 @@ jobs:
113
run: cd clang && ctest -V -C Debug
114
- name: test release
115
run: cd clang && ctest -V -C Release
116
+ build-book:
117
+ runs-on: ubuntu-latest
118
+ steps:
119
+ - uses: actions/checkout@v4
120
+ with:
121
+ fetch-depth: 0
122
+ - name: init
123
+ run: |
124
+ url="https://github.com/rust-lang/mdBook/releases/download/v0.4.47/mdbook-v0.4.47-x86_64-unknown-linux-gnu.tar.gz"
125
+ mkdir mdbook
126
+ curl -sSL $url | tar -xz --directory=./mdbook
127
+ echo `pwd`/mdbook >> $GITHUB_PATH
128
+ - name: build book
129
130
+ cd guide
131
+ mdbook build
132
+ ls book
0 commit comments