-
Notifications
You must be signed in to change notification settings - Fork 30
49 lines (48 loc) · 1.32 KB
/
build.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
name: build
on: push
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_DB: action-store-test
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "123456"
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.3
gemfile: Gemfile
rails_version: 7.2
- ruby: 3.2
gemfile: gemfiles/Gemfile-7-1
rails_version: 7.1
- ruby: 3.2
gemfile: gemfiles/Gemfile-7-0
rails_version: 7.0
- ruby: 2.7
gemfile: gemfiles/Gemfile-6-1
rails_version: 6.1
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
USE_OFFICIAL_GEM_SOURCE: 1
RAILS_VERSION: ${{ matrix.rails_version }}
DATABASE_URL: postgres://postgres:123456@localhost:5432/action-store-test
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rails test