-
Notifications
You must be signed in to change notification settings - Fork 377
47 lines (42 loc) · 1.22 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
name: build
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.3
gemfile: Gemfile
- ruby: 3.2
gemfile: gemfiles/rails71.gemfile
- ruby: 3.1
gemfile: gemfiles/rails70.gemfile
- ruby: "3.0"
gemfile: gemfiles/rails61.gemfile
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test
- uses: ankane/setup-postgres@v1
with:
database: ahoy_test
- run: ADAPTER=postgresql bundle exec rake test
- uses: ankane/setup-mysql@v1
with:
database: ahoy_test
- run: ADAPTER=mysql2 bundle exec rake test
- run: ADAPTER=trilogy bundle exec rake test
- uses: ankane/setup-mariadb@v1
with:
database: ahoy_test
- run: ADAPTER=mysql2 bundle exec rake test
- run: ADAPTER=trilogy bundle exec rake test
- uses: ankane/setup-mongodb@v1
- run: ADAPTER=mongoid bundle exec rake test