Skip to content

Remove job for 3.3 for now #2

Remove job for 3.3 for now

Remove job for 3.3 for now #2

Workflow file for this run

name: CI
on:
- push
env:
BUNDLE_PATH: vendor/bundle
jobs:
test:
name: Run Tests
runs-on: ubuntu-22.04
strategy:
matrix:
ruby:
- '2.6'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Tests"
run: bundle exec rake test