-
Notifications
You must be signed in to change notification settings - Fork 0
159 lines (125 loc) · 3.85 KB
/
specs.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: Run Rspec, Rubocop, and Brakeman
on: [push]
env:
RAILS_ENV: test
GOOGLE_MAP_API_KEY: notusedinspecs
SECRET_KEY_BASE: notusedinspecs
jobs:
rspec:
name: Run Rspec
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis:11-3.3-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.20.0'
- name: Install dependencies
run: sudo apt-get install -y libproj-dev proj-bin
- name: Set up ruby gem cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Install yarn
run: npm install yarn -g
- name: Yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Set up yarn cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install node.js dependencies
run: yarn install
- name: Set up test database
run: bin/rails db:create db:schema:load
env:
DATABASE_URL: postgis://postgres:password@localhost:5432/test
- name: Run tests
run: bundle exec rake
env:
DATABASE_URL: postgis://postgres:password@localhost:5432/test
linting:
name: Run Rubocop
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.20.0'
- name: Set up ruby gem cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies
run: sudo apt-get install -y libproj-dev proj-bin
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Install node.js dependencies
run: yarn install
- name: Run rubocop
run: bundle exec rubocop --format clang --parallel
brakeman:
name: Run Brakeman
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '16.20.0'
- name: Set up ruby gem cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Install dependencies
run: sudo apt-get install -y libproj-dev proj-bin
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run brakeman
run: bundle exec brakeman