-
Notifications
You must be signed in to change notification settings - Fork 100
83 lines (74 loc) · 1.84 KB
/
active-record-multi-tenant-tests.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Active Record Multi-Tenant Tests
env:
CI: true
on:
push:
branches:
- "**"
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- uses: actions/checkout@v4
- name: Rubocop static code analysis
run: |
gem install rubocop
rubocop
doc_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: actions/checkout@v4
- name: Install python dependencies
run: |
pip install -r docs/requirements.txt
- name: Documentation Checks
run: |
cd docs
sphinx-build -W -b html source builds
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
appraisal:
- rails-6.0
- rails-6.1
- rails-7.0
- rails-7.1
- active-record-6.0
- active-record-6.1
- active-record-7.0
- active-record-7.1
citus_version:
- '10'
- '11'
- '12'
name: Ruby ${{ matrix.ruby }}/${{ matrix.gemfile }} / Citus ${{ matrix.citus_version }}
env:
APPRAISAL: ${{ matrix.appraisal }}
CITUS_VERSION: ${{ matrix.citus_version }}
steps:
- uses: actions/checkout@v4
- name: Start Citus Database environment
run: docker-compose up -d
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Execute tests
run: bundle exec rake spec
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3