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 83ff912 commit 70aba78Copy full SHA for 70aba78
.github/workflows/ci.yml
@@ -14,29 +14,22 @@ jobs:
14
strategy:
15
fail-fast: false
16
matrix:
17
- ruby: ['2.4.x', '2.5.x', '2.6.x']
+ ruby: ['2.4', '2.5', '2.6']
18
19
steps:
20
- name: Checkout
21
uses: actions/checkout@v1
22
23
- name: Setup Ruby
24
- uses: actions/setup-ruby@v1
+ uses: ruby/setup-ruby@v1
25
with:
26
ruby-version: ${{ matrix.ruby }}
27
+ bundler-cache: true
28
29
- name: Install sqlite
30
run: |
31
sudo apt-get install libsqlite3-dev
32
- - name: Update System
33
- run: |
34
- gem update --system --no-document
35
-
36
- - name: Bundle install for Annotate models
37
38
- bundle install --jobs=4 --retry=3
39
40
- name: Run Tests
41
run: INTEGRATION_TESTS=1 bundle exec rspec
42
0 commit comments