Skip to content

fix config value example #88

fix config value example

fix config value example #88

Workflow file for this run

name: CI
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- "*"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.2", "3.3", "3.4"]
steps:
- uses: actions/checkout@v4
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler: latest
bundler-cache: true
rubygems: latest
- name: Run tests
run: bundle exec rspec
- name: run the linter
run: bundle exec standardrb