-
-
Notifications
You must be signed in to change notification settings - Fork 13
71 lines (68 loc) · 1.74 KB
/
main.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
name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}, DB ${{ matrix.db }}, Rails ${{ matrix.rails }}
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
rails:
- '6.1'
- '7.0'
- '7.1'
- '7.2'
- '8.0'
db:
- mysql
- postgresql
- sqlite
exclude:
- rails: '7.0'
ruby: '3.1'
- rails: '7.0'
ruby: '3.2'
- rails: '7.0'
ruby: '3.3'
- rails: '7.2'
ruby: '3.0'
- rails: '8.0'
ruby: '3.0'
- rails: '8.0'
ruby: '3.1'
env:
DB: ${{ matrix.db }}
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Enable MySQL
if: ${{ matrix.db == 'mysql' }}
run: sudo systemctl start mysql.service
- name: Create MySQL Database
if: ${{ matrix.db == 'mysql' }}
run: mysql -u root -proot -e 'CREATE DATABASE runner;'
- name: Enable PostgreSQL
if: ${{ matrix.db == 'postgresql' }}
run: sudo systemctl start postgresql.service
- name: Create PostgreSQL User
if: ${{ matrix.db == 'postgresql' }}
run: sudo -u postgres -i createuser runner -s
- name: Create PostgreSQL Database
if: ${{ matrix.db == 'postgresql' }}
run: createdb runner
- name: Run the default task
run: bundle exec rake