2024-02-27 00:42:22 +00:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
jekyll:
|
2024-02-27 01:50:07 +00:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-02-27 01:55:17 +00:00
|
|
|
image: ubuntu:latest
|
2024-02-27 00:42:22 +00:00
|
|
|
steps:
|
2024-02-27 02:33:44 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-27 01:45:57 +00:00
|
|
|
- uses: https://github.com/ruby/setup-ruby@v1
|
2024-02-27 01:48:33 +00:00
|
|
|
with:
|
|
|
|
ruby-version: '3.3' # Not needed with a .ruby-version file
|
|
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
2024-02-27 01:45:57 +00:00
|
|
|
- run: bundle install
|
|
|
|
- run: jekyll help
|