Skip to content

Needed to run bundle after bumping versions #72

Needed to run bundle after bumping versions

Needed to run bundle after bumping versions #72

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2"]
name: Run Tests (Ruby ${{ matrix.ruby }})
steps:
- uses: actions/checkout@master
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake