-
Notifications
You must be signed in to change notification settings - Fork 6
69 lines (67 loc) · 2.08 KB
/
ci.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
name: "CI"
on:
push:
branches-ignore: ['cms/**'] # Pas besoin car Netlify génère une pull request
pull_request:
jobs:
test:
if: ${{ !contains(github.event.head_commit.message, '[skip-ci]') }}
runs-on: ubuntu-latest
services:
postgres:
image: postgis/postgis:13-3.3
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password
redis:
image: redis
ports:
- 6379/tcp
env:
RAILS_ENV: test
DATABASE_URL: "postgis://rails:password@localhost:5432/rails_test"
DISABLE_BOOTSNAP: "1"
steps:
- run: mkdir -p tmp/artifacts/capybara
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- name: Set up database schema
run: bin/rails db:schema:load
- name: Set up database sequences
run: bin/rails runner scripts/create_postgres_sequences_memoire_photos_numbers.rb
- name: Run tests
run: bundle exec rspec
env:
REDIS_PORT: ${{ job.services.redis.ports[6379] }}
RUBYOPT: -W0 # Disable Ruby warnings for libvips uninitialized constant cf https://github.com/customink/ruby-vips-lambda/issues/15
- uses: actions/upload-artifact@v3
with:
name: artifacts-capybara
path: tmp/artifacts/capybara
lint:
if: ${{ !contains(github.event.head_commit.message, '[skip-ci]') }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
# - name: Security audit dependencies
# run: bin/bundler-audit --update
# - name: Security audit application code
# run: bin/brakeman -q -w2
- name: Lint Ruby files
run: bundle exec rubocop --parallel