Skip to content

Update CI to use Ruby 3.1 to Ruby 3.4 #43

Update CI to use Ruby 3.1 to Ruby 3.4

Update CI to use Ruby 3.1 to Ruby 3.4 #43

Workflow file for this run

# .github/workflows/ci.yml
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.2", "3.3", "3.4"]
steps:
- uses: actions/checkout@v1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Build and run tests
env:
COVERAGE: true
TERM: xterm
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
bundle exec rake test