-
Notifications
You must be signed in to change notification settings - Fork 18
49 lines (37 loc) · 1.15 KB
/
config.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
name: Tests
on: [push]
jobs:
linter:
strategy:
fail-fast: false # I understand this is to run on all versions.
matrix:
ruby: ['3.0.4']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rubocop --display-cop-names --parallel
rspec:
strategy:
fail-fast: false # I understand this is to run on all versions.
matrix:
ruby: ['3.0.4']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
- run: |
./cc-test-reporter before-build
bundle exec rspec
./cc-test-reporter after-build -r $CC_TEST_REPORTER_ID --exit-code $?
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}