-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (27 loc) Β· 588 Bytes
/
ci.yaml
File metadata and controls
27 lines (27 loc) Β· 588 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: "Test with Jekyll ${{ matrix.jekyll }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
jekyll: ["~> 3.9", "~> 4.2"]
env:
JEKYLL_VERSION: ${{ matrix.jekyll }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set Up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Run tests
run: script/cibuild