-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (47 loc) · 1.12 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
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_ROOT_PASSWORD: password
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