Commit 10008ae6ef5ddf2329f0ad4b4d94b9b2afb11976
1 parent
2e975d31
Exists in
master
and in
5 other branches
Test against Elasticsearch 7.13.4 on CI
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
.github/workflows/build.yml
... | ... | @@ -2,20 +2,19 @@ name: build |
2 | 2 | on: [push, pull_request] |
3 | 3 | jobs: |
4 | 4 | build: |
5 | - if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
6 | 5 | strategy: |
7 | 6 | fail-fast: false |
8 | 7 | matrix: |
9 | 8 | include: |
10 | 9 | - ruby: 3.0 |
11 | 10 | gemfile: Gemfile |
12 | - elasticsearch: 7.13.3 | |
11 | + elasticsearch: 7.13.4 | |
13 | 12 | - ruby: 3.0 |
14 | 13 | gemfile: Gemfile |
15 | 14 | opensearch: 1 |
16 | 15 | - ruby: 2.7 |
17 | 16 | gemfile: gemfiles/activerecord60.gemfile |
18 | - elasticsearch: 7.13.3 | |
17 | + elasticsearch: 7.13.4 | |
19 | 18 | - ruby: 2.6 |
20 | 19 | gemfile: gemfiles/activerecord52.gemfile |
21 | 20 | elasticsearch: 7.0.0 |
... | ... | @@ -71,6 +70,7 @@ jobs: |
71 | 70 | |
72 | 71 | - uses: ankane/setup-mongodb@v1 |
73 | 72 | if: ${{ matrix.mongodb }} |
73 | + | |
74 | 74 | - run: | |
75 | 75 | sudo apt-get install redis-server |
76 | 76 | sudo systemctl start redis | ... | ... |