Skip to content

Bump actionpack from 8.0.0 to 8.0.0.1 #274

Bump actionpack from 8.0.0 to 8.0.0.1

Bump actionpack from 8.0.0 to 8.0.0.1 #274

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.2'
- '3.3'
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run Tests
run: bundle exec rake
env:
RUBYOPT: "-W:deprecated"