We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb1ae4 commit 3a8c932Copy full SHA for 3a8c932
1 file changed
.github/workflows/pr_build.yml
@@ -0,0 +1,20 @@
1
+name: Pull Request Flow
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ master ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
13
+ - name: Set up Ruby
14
+ uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: 2.7
17
+ bundler-cache: true
18
19
+ - name: Build Book
20
+ run: bundle exec rake book:build
0 commit comments