-
Notifications
You must be signed in to change notification settings - Fork 23
123 lines (101 loc) · 2.89 KB
/
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: Test Workflow
on:
pull_request:
push:
branches:
- main
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint Ruby files
run: bundle exec rubocop
- name: Security audit application code
run: bundle exec brakeman -q
test:
runs-on: ubuntu-latest
permissions:
checks: write
strategy:
fail-fast: false
matrix:
ci_total_jobs: [4]
ci_job_index: ["0", "1", "2", "3"]
env:
RAILS_ENV: test
DATABASE_URL: "postgresql://postgres:postgres@127.0.0.1"
PQ_REST_API_HOST: http://localhost:8888
CI: true
CI_TOTAL_JOBS: ${{ matrix.ci_total_jobs }}
CI_JOB_INDEX: ${{ matrix.ci_job_index }}
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install packages
run: yarn install --pure-lockfile
- name: Precompile assets
run: bin/rails assets:precompile
- name: Setup test database
run: bin/rails db:setup
- name: Run unit and feature tests
run: bundle exec parallel_rspec -n "${CI_TOTAL_JOBS}" --only-group "${CI_JOB_INDEX}" --group-by "runtime"
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
include-hidden-files: true
name: coverage-${{env.CI_JOB_INDEX}}
path: coverage/.resultset.json
coverage:
needs: test
runs-on: ubuntu-latest
permissions: write-all
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Download coverage
uses: actions/download-artifact@v4
with:
path: coverage
- name: Collate coverage
run: bundle exec rake coverage:report
- name: Code coverage
uses: joshmfrankel/simplecov-check-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
minimum_suite_coverage: 84
minimum_file_coverage: 100
build-and-deploy:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [linting, coverage]
uses: ./.github/workflows/deploy.yml
secrets: inherit