Skip to content

timeout 15m for all GHA jobs #26

timeout 15m for all GHA jobs

timeout 15m for all GHA jobs #26

Workflow file for this run

---
name: jekyll
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
jekyll:
strategy:
matrix:
os: [ubuntu-24.04]
ruby: [3.3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec jekyll build