Skip to content

Bump activesupport from 8.1.2 to 8.1.2.1 #828

Bump activesupport from 8.1.2 to 8.1.2.1

Bump activesupport from 8.1.2 to 8.1.2.1 #828

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.3
- uses: actions/cache@v4
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-3.4.3-${{ hashFiles('**/Gemfile.lock') }}
- name: Lint with standard
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec standardrb
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.3
- uses: actions/cache@v4
with:
path: vendor/bundle
key: gems-build-rails-main-ruby-3.4.3-${{ hashFiles('**/Gemfile.lock') }}
- name: Run tests
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
bundle exec rake db:test:prepare
bundle exec rake
env:
RAILS_ENV: test
DATABASE_URL: "postgres://postgres@localhost:5432/timeframe_test"