Skip to content

Commit 3a8c932

Browse files
authored
Add PR validation
1 parent 5eb1ae4 commit 3a8c932

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/pr_build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)