Skip to content

Add Ruby 4.0 to the test matrix in GitHub Actions workflow #380

Add Ruby 4.0 to the test matrix in GitHub Actions workflow

Add Ruby 4.0 to the test matrix in GitHub Actions workflow #380

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
schedule:
# 00:00 on the 1st of every month
- cron: '0 0 1 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.3', '3.4', '4.0', 'jruby-10.0']
env:
BUNDLE_WITHOUT: optional
steps:
- uses: actions/checkout@v6.0.1
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Tests for Ruby ${{ matrix.ruby }}
run: bundle exec rake
- uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: coverage/.resultset.json
yard:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: optional
steps:
- uses: actions/checkout@v6.0.1
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Build YARD docs
run: bundle exec yard doc --fail-on-warning