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 2a0b7c8 commit 24724beCopy full SHA for 24724be
2 files changed
.circleci/config.yml .circleci/temp-rename-config.yml.circleci/config.yml renamed to .circleci/temp-rename-config.yml
.github/workflows/ci.yml
@@ -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