Skip to content

Update license id

Update license id #16

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
environment: CI
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- 'jruby'
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Upload coverage results
if: matrix.ruby-version == '3.1'
continue-on-error: true
uses: coverallsapp/github-action@master
with:
github-token: ${{ github.token }}