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 311ce3d commit e64c87aCopy full SHA for e64c87a
.github/workflows/ci
@@ -0,0 +1,22 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: ["gh-pages"]
6
+ pull_request:
7
8
+jobs:
9
+ # Build job
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v3
15
+ - name: Setup Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ ruby-version: '3.1' # Not needed with a .ruby-version file
19
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
20
+ cache-version: 0 # Increment this number if you need to re-download cached gems
21
+ - name: Build with Jekyll
22
+ run: bundle exec jekyll build
0 commit comments