finapps 5.0.46 → 5.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,38 +0,0 @@
1
- name: Continuous Integration
2
-
3
- on: [push, pull_request]
4
-
5
- jobs:
6
- ci:
7
- if: "!contains(github.event.head_commit.message, 'skip ci')"
8
- runs-on: ubuntu-latest
9
-
10
- strategy:
11
- fail-fast: true
12
-
13
- steps:
14
- - uses: actions/checkout@v1
15
-
16
- - name: Use Ruby 2.6
17
- uses: actions/setup-ruby@v1
18
- with:
19
- ruby-version: '2.6'
20
-
21
- - uses: actions/cache@v2
22
- with:
23
- path: vendor/bundle
24
- key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
25
- restore-keys: |
26
- ${{ runner.os }}-gems-
27
-
28
- - name: Install gems
29
- run: |
30
- gem install -N bundler
31
- bundle config path vendor/bundle
32
- bundle install --jobs 4 --retry 3
33
-
34
- - name: Run rubocop
35
- run: bundle exec rubocop
36
-
37
- - name: Run tests
38
- run: bundle exec rspec