Skip to content

Simplify CI workflow #2

Simplify CI workflow

Simplify CI workflow #2

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4.5'
bundler-cache: true
- name: Run tests
run: bundle exec rake test