Skip to content

Install windows specific deps for Jekyll #2493

Install windows specific deps for Jekyll

Install windows specific deps for Jekyll #2493

Workflow file for this run

name: ci
on: [push, pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ["3.2"]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Dump environment
run: env | sort
- name: Checkout ruby/www.ruby-lang.org
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
fetch-depth: 1
- name: Setup Ruby
uses: ruby/setup-ruby@d37167af451eb51448db3354e1057b75c4b268f7 # v1.155.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Dump Ruby version
run: ruby -v
- name: Run tests
run: bundle exec rake test