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 3e66a7f commit ac5c4d6Copy full SHA for ac5c4d6
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ name: Jekyll Build
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - name: Set up Ruby
10
+ uses: eregon/use-ruby-action@master
11
+ with:
12
+ ruby-version: 2.7
13
+ - uses: actions/cache@v1
14
15
+ path: vendor/bundle
16
+ key: bundler-${{ hashFiles('**/Gemfile.lock')}}
17
+ restore-keys: |
18
+ bundler-
19
+ - name: bundle install
20
+ run: |
21
+ gem install bundler
22
+ bundle install --jobs 4 --retry 3 --path vendor/bundle
23
+ - name: Jekyll Build
24
+ run: bundle exec jekyll build
.travis.yml
0 commit comments