Skip to content

Bump version to 0.4.0. #91

Bump version to 0.4.0.

Bump version to 0.4.0. #91

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "3.1"
- "3.2"
- "3.3"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Run the tests and lint the code
env:
COVERAGE: true
run: |
bundle exec appraisal install
bundle exec appraisal rake check