Skip to content

Update rubocop requirement from ~> 1.72.1 to ~> 1.73.0 (#16) #30

Update rubocop requirement from ~> 1.72.1 to ~> 1.73.0 (#16)

Update rubocop requirement from ~> 1.72.1 to ~> 1.73.0 (#16) #30

Workflow file for this run

---
name: CI
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec