Skip to content

use git config from rubygems/release action #15

use git config from rubygems/release action

use git config from rubygems/release action #15

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: Tests Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run static type checks
run: bundle exec srb tc
- name: Run lint
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec