We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85219b4 commit c432045Copy full SHA for c432045
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,24 @@
1
+name: Continuous Integration
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v1
11
12
+ - name: Setup Ruby
13
+ uses: actions/setup-ruby@v1
14
+ with:
15
+ ruby-version: 2.6.x
16
+ architecture: x64
17
18
+ - name: Install bundler and dependencies
19
+ run: |
20
+ gem install bundler
21
+ bundle install --jobs 4 --retry 3
22
23
+ - name: Check build
24
+ run: bundle exec jekyll build
0 commit comments