-
-
Notifications
You must be signed in to change notification settings - Fork 17
42 lines (40 loc) · 991 Bytes
/
ci.yml
File metadata and controls
42 lines (40 loc) · 991 Bytes
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
name: test
on:
push:
branches: [ master ]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- run: bundle install
- name: rubocop runs
run: bundle exec rake rubocop
test:
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests with simplecov
run: bundle exec rake spec
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
- name: Run vulnerabilities check
run: bundle exec rake audit
- name: Upload simplecov results for coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/