Skip to content

build(deps): bump json from 2.7.5 to 2.7.6 (#308) #170

build(deps): bump json from 2.7.5 to 2.7.6 (#308)

build(deps): bump json from 2.7.5 to 2.7.6 (#308) #170

Workflow file for this run

name: Test Master
on:
push:
branches: [master]
merge_group:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
include:
- ruby: "3.0"
coverage: "true"
name: Test with ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop lib
- name: Run Test
run: bundle exec rspec
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}