Skip to content

Start with 1.0.0 version #19

Start with 1.0.0 version

Start with 1.0.0 version #19

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- main
jobs:
ci:
name: Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- '3.0.6'
- '3.1.4'
- '3.2.3'
- '3.3.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Download RBS collection
run: bundle exec rbs collection install
- name: Lint with Rubocop
run: bundle exec rubocop
- name: Check types with Steep
run: bundle exec steep check
- name: Test with RSpec
run: bundle exec rspec
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}