Skip to content

chore: update specs to v0.8.0 #17

chore: update specs to v0.8.0

chore: update specs to v0.8.0 #17

Workflow file for this run

name: Tests
on:
push:
branches: [ main, update/specs-v0.8.0 ]
pull_request:
branches: [ main, update/specs-v0.8.0 ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
ruby: ['3.2', '3.3', '3.4', '4.0']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec
- name: Run linting
run: bundle exec rubocop