Skip to content

ci: update ruby versions (#29) #78

ci: update ruby versions (#29)

ci: update ruby versions (#29) #78

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
test:
strategy:
matrix:
os: [ubuntu, macos, windows]
ruby: [3.0, 3.1, 3.2, head]
continue-on-error: ${{ matrix.ruby == 'head' }}
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: make test