Skip to content

Bump actions/checkout from 4 to 6 (#1) #7

Bump actions/checkout from 4 to 6 (#1)

Bump actions/checkout from 4 to 6 (#1) #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
ruby: ["3.2", "3.3"]
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: RSpec
run: bundle exec rspec
- name: RuboCop
run: bundle exec rubocop --fail-level W