Skip to content

just ruby 3.3

just ruby 3.3 #26

Workflow file for this run

---
name: codecov
'on':
push:
branches:
- master
jobs:
codecov:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- run: bundle config set --global path "$(pwd)/vendor/bundle"
- run: bundle install
- run: bundle exec rake
- uses: codecov/codecov-action@v5
with:
files: coverage/.resultset.json
fail_ci_if_error: true