Merge pull request #365 from Tatsumi0000/dependabot/bundler/web/backe… #332
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: Run backend-ci | |
on: | |
pull_request: | |
paths: | |
- "web/backend/**" | |
- ".github/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "web/backend/**" | |
- ".github/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
RAILS_ENV: test | |
jobs: | |
backend-ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: web/backend | |
container: | |
image: ghcr.io/tatsumi0000/starry-kids/backend:latest | |
services: | |
db: | |
image: mysql:8.1.0 | |
env: | |
TZ: Asia/Tokyo | |
MYSQL_ROOT_PASSWORD: password | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
web/backend | |
- uses: actions/cache@v3 | |
with: | |
path: /vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Bundle install | |
run: | | |
bundle config path /vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: DB setup | |
run: | | |
bin/rails db:create | |
- name: Run rspec | |
run: bundle exec rspec |