Skip to content

fixes for macos, add changelog #29

fixes for macos, add changelog

fixes for macos, add changelog #29

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby-version: ['3.3', '3.4']
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Lint
run: bundle exec rake rubocop
- name: Build
run: bundle exec rake
- name: Test
run: bundle exec rspec