-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (59 loc) · 1.43 KB
/
backend-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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