build(deps): bump actionpack from 7.1.3.2 to 7.1.3.4 #226
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 幻水音楽考 on Spotify | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*.*.*' | |
env: | |
TZ: Asia/Tokyo | |
RAILS_ENV: test | |
jobs: | |
form: | |
runs-on: ubuntu-22.04 | |
name: 幻水音楽考 | |
steps: | |
- name: $ git clone する | |
uses: actions/checkout@v4 | |
- name: Ruby をセットアップする | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: RuboCop を実行する | |
run: | | |
bundle exec rubocop | |
- name: データベースをセットアップする | |
run: | | |
bundle exec rails db:create | |
bundle exec rails db:migrate | |
- name: RSpec を実行する | |
run: | | |
bundle exec rspec | |
- name: 最終CSVのエクスポートタスクを実行する | |
run: | | |
bundle exec rails export_to_dist_csv_files:all |