Skip to content

feat: ๐ŸŽธ Prekin.next ใ‚’ๅฎŸ่ฃ…ใ—ใ€ๆฌกใฎใƒ—ใƒฌ้‡‘ใฎๅนดๆœˆๆ—ฅใ‚’ๅ–ๅพ—ใงใใ‚‹ใ‚ˆใ†ใซใ—ใŸ #301

feat: ๐ŸŽธ Prekin.next ใ‚’ๅฎŸ่ฃ…ใ—ใ€ๆฌกใฎใƒ—ใƒฌ้‡‘ใฎๅนดๆœˆๆ—ฅใ‚’ๅ–ๅพ—ใงใใ‚‹ใ‚ˆใ†ใซใ—ใŸ

feat: ๐ŸŽธ Prekin.next ใ‚’ๅฎŸ่ฃ…ใ—ใ€ๆฌกใฎใƒ—ใƒฌ้‡‘ใฎๅนดๆœˆๆ—ฅใ‚’ๅ–ๅพ—ใงใใ‚‹ใ‚ˆใ†ใซใ—ใŸ #301

Workflow file for this run

on: [push]
name: Prekin
jobs:
prekin_github_actions:
name: Prekin CI
runs-on: ubuntu-latest
container:
image: ruby:3.2.2
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