We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5232422 commit aa4904dCopy full SHA for aa4904d
.github/workflows/ci.yml
@@ -18,21 +18,17 @@ jobs:
18
runs-on: ubuntu-latest
19
20
steps:
21
- - name: Checkout
22
- uses: actions/checkout@v2
+ - uses: actions/checkout@v2
23
24
- - name: Setup Ruby
25
- uses: ruby/setup-ruby@v1
+ - uses: ruby/setup-ruby@v1
26
with:
27
ruby-version: ${{ matrix.ruby }}
28
bundler-cache: true
29
30
- - name: Install sqlite
31
- run: |
+ - run: |
32
sudo apt-get install libsqlite3-dev
33
34
- - name: Run Tests
35
- run: INTEGRATION_TESTS=1 bundle exec rspec
+ - run: bundle exec rubocop
+
+ - run: INTEGRATION_TESTS=1 bundle exec rspec
36
37
- - name: Rubocop
38
- run: bundle exec rubocop
0 commit comments