-
Notifications
You must be signed in to change notification settings - Fork 21
45 lines (43 loc) · 1.01 KB
/
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
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
name: Run test with Ruby ${{ matrix.ruby }}
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: barbeque_root
MYSQL_USER: barbeque
MYSQL_PASSWORD: barbeque
MYSQL_DATABASE: barbeque
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RAILS_ENV: test
DATABASE_URL: mysql2://barbeque:[email protected]:3306/barbeque
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bin/rails db:setup
- run: bin/rails zeitwerk:check
- run: bundle exec rspec