-
Notifications
You must be signed in to change notification settings - Fork 30
46 lines (45 loc) · 1.24 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
name: build
on: push
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.2
gemfile: Gemfile
postgres: 10
rails_version: 7.1
- ruby: 3.2
gemfile: gemfiles/Gemfile-7-0
postgres: 10
rails_version: 7.0
- ruby: 2.7
gemfile: gemfiles/Gemfile-6-1
postgres: 10
rails_version: 6.1
- ruby: 2.6
gemfile: gemfiles/Gemfile-6-0
postgres: 10
rails_version: 6.0
- ruby: 2.6
gemfile: gemfiles/Gemfile-5-2
postgres: 10
rails_version: 5.0
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
USE_OFFICIAL_GEM_SOURCE: 1
RAILS_VERSION: ${{ matrix.rails_version }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
- run: createdb action-store-test
- run: bundle exec rails test