CIでDocker ImageをCDするのとbackend/frontendのCIをするworkflowを書いた #11
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 Rspec | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
paths: | |
- "web/backend/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
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_ALLOW_EMPTY_PASSWORD: yes | |
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 |