-
-
Notifications
You must be signed in to change notification settings - Fork 243
30 lines (23 loc) · 587 Bytes
/
ci.yml
File metadata and controls
30 lines (23 loc) · 587 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
28
29
30
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler: 2.4.17
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Build Jekyll site
run: bundle exec jekyll build --verbose
- name: Run htmlproofer
run: bundle exec htmlproofer ./_site --check-html --disable-external