-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 954 Bytes
/
check.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
name: Tests
on: [push]
jobs:
security_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Salus Scan
run: docker run --rm -t -v $(pwd):/home/repo coinbase/salus:latest
tests:
runs-on: ubuntu-latest
container:
image: ruby:2.6.6
env:
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
BUNDLE_PATH: vendor/bundle
RAILS_ENV: test
steps:
- uses: actions/checkout@v3
- name: Which bundler?
run: |
bundle -v
- name: Cache
id: restore-cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: rails-demo-bundle-v2-${{ hashFiles('Gemfile.lock') }}
- name: Bundle Install
run: |
bundle check || bundle install
- name: Rubocop
run: bundle exec rubocop --require rubocop-rspec
- name: Run rspec
run: |
bundle exec rspec spec