forked from ankane/pghero
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.08 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
name: build
on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.0
gemfile: Gemfile
postgres: 13
- ruby: 2.7
gemfile: gemfiles/activerecord60.gemfile
postgres: 12
- ruby: 2.6
gemfile: gemfiles/activerecord52.gemfile
postgres: 11
- ruby: 2.5
gemfile: gemfiles/activerecord51.gemfile
postgres: 10
- ruby: 2.4
gemfile: gemfiles/activerecord50.gemfile
postgres: 9.6
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
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 }}
config: |
shared_preload_libraries = 'pg_stat_statements'
- run: createdb pghero_test
- run: bundle exec rake test