Skip to content

chore(deps): update ruby docker tag to v3.3.0 (#187) #313

chore(deps): update ruby docker tag to v3.3.0 (#187)

chore(deps): update ruby docker tag to v3.3.0 (#187) #313

Workflow file for this run

on: [push]
name: Prekin
jobs:
prekin_github_actions:
name: Prekin CI
runs-on: ubuntu-latest
container:
image: ruby:3.3.0
env:
BUNDLE_PATH: vendor/bundle
steps:
- uses: actions/checkout@v4
- name: Install the latest version's Bundler
run: |
gem install bundler --no-document
- name: Restore caches of RubyGems
uses: actions/cache@v3
id: rubygems-cache
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gem-
- name: $ bundle install を行う
run: |
bundle config set deployment 'true'
bundle install --jobs 4 --retry 3
- name: Execute RSpec
if: always()
run: |
bundle exec rspec
env:
POSTGRES_HOST: postgres
RAILS_ENV: test
- name: Execute RuboCop
if: always()
run: |
bundle exec rubocop -D -E -S -P