Skip to content

chore(deps): bump actions/checkout from 6 to 7 in the actions group #112

chore(deps): bump actions/checkout from 6 to 7 in the actions group

chore(deps): bump actions/checkout from 6 to 7 in the actions group #112

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "**/*.md"
- "site/**"
- "docs/**"
- ".github/ISSUE_TEMPLATE/**"
- ".github/PULL_REQUEST_TEMPLATE.md"
- ".github/CODEOWNERS"
pull_request:
paths-ignore:
- "**/*.md"
- "site/**"
- "docs/**"
- ".github/ISSUE_TEMPLATE/**"
- ".github/PULL_REQUEST_TEMPLATE.md"
- ".github/CODEOWNERS"
jobs:
test:
name: RSpec (Ruby 3.4)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
# Default rspec excludes :real_data specs — no network in CI.
- run: bundle exec rspec
lint:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec rubocop --format github