Skip to content

switch CI and publishing to Github Actions #5

switch CI and publishing to Github Actions

switch CI and publishing to Github Actions #5

Workflow file for this run

on:
push:
branches: [main]
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: test ${{ matrix.ruby-version }} with ${{ matrix.gemfile }}
run: bundle exec rake test