Skip to content

Commit 97dedc9

Browse files
committed
Add CI
1 parent 40c5c05 commit 97dedc9

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.github/workflows/ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: ruby/setup-ruby@v1
16+
with:
17+
bundler-cache: true
18+
- run: bundle install --jobs 4 --retry 3 --path vendor/bundle
19+
- run: bundle exec jekyll build

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3.0

0 commit comments

Comments
 (0)