Skip to content

Merge pull request #37 from localhots/fix-tests-2024 #3

Merge pull request #37 from localhots/fix-tests-2024

Merge pull request #37 from localhots/fix-tests-2024 #3

Workflow file for this run

# Adopted from
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-ruby
name: Ruby CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1.173.0
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec