finapps 5.0.46 → 5.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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