We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ab44d4 + 05f9520 commit 7b309a3Copy full SHA for 7b309a3
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: ruby/setup-ruby@v1
17
+ with:
18
+ ruby-version: '2.6.6'
19
+ bundler-cache: true
20
+ - name: Bower
21
+ run: |
22
+ npm install -g bower
23
+ bower install
24
+ - name: Build site
25
26
+ bundle exec jekyll build 2> error.log
27
+ cat >&2 error.log
28
+ ( ! grep -qie Error -e Warn error.log )
.travis.yml
0 commit comments