Skip to content

chore: Sync fixtures as of 2026-02-24 16:27:46 #580

chore: Sync fixtures as of 2026-02-24 16:27:46

chore: Sync fixtures as of 2026-02-24 16:27:46 #580

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
markdown-lint:
name: Lint markdown
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Run markdownlint-cli
uses: nosborn/github-action-markdown-cli@v3.5.0
with:
files: .
config_file: ".markdownlint.yaml"
test:
needs:
- markdown-lint
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby-version }}
strategy:
matrix:
ruby-version:
- '3.2'
- '3.3'
- '3.4'
- '4.0'
- 'ruby-head'
- 'truffleruby-head'
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake