Skip to content

Commit 24724be

Browse files
committed
Created a GitHub Actions CI workflow. Temp rename CircleCI version
1 parent 2a0b7c8 commit 24724be

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build and Test
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Ruby
16+
uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: 3.1
19+
bundler: 2.4.17
20+
21+
- name: Install dependencies
22+
run: |
23+
gem install bundler
24+
bundle install
25+
26+
- name: Build Jekyll site
27+
run: bundle exec jekyll build --verbose
28+
29+
- name: Run htmlproofer
30+
run: bundle exec htmlproofer ./_site --check-html --disable-external

0 commit comments

Comments
 (0)