-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (36 loc) · 979 Bytes
/
test.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
name: Test
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.1.0
gemfile: Gemfile
postgres: 10
- ruby: 3.0.0
gemfile: gemfiles/Gemfile-6-1
postgres: 10
- ruby: 2.6
gemfile: gemfiles/Gemfile-6-0
postgres: 10
- ruby: 2.6
gemfile: gemfiles/Gemfile-5-2
postgres: 10
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
USE_OFFICIAL_GEM_SOURCE: 1
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-draft-test
- run: bundle exec rails test