Skip to content

Commit 4b8c5fe

Browse files
committed
X!
1 parent 3d2b433 commit 4b8c5fe

14 files changed

Lines changed: 508 additions & 467 deletions

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
name: Build site
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: "3.3.4"
19+
bundler-cache: true
20+
21+
- name: Jekyll build
22+
run: bundle exec jekyll build

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
# Ignore Mac DS_Store files
21
.DS_Store
3-
**/.DS_Store
2+
**/.DS_Store
3+
_site/
4+
.sass-cache/
5+
.bundle/
6+
vendor/

Gemfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
source "https://rubygems.org"
22

3-
gem "github-pages", group: :jekyll_plugins
4-
5-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
6-
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
7-
8-
# Performance-booster for watching directories on Windows
9-
gem "wdm", "~> 0.1.0" if Gem.win_platform?
3+
# Match GitHub Pages: https://pages.github.com/versions/
4+
gem "github-pages", "~> 232", group: :jekyll_plugins

0 commit comments

Comments
 (0)