Skip to content

Commit

Permalink
Test with only redis 6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Nov 16, 2022
1 parent 557e89d commit db2094e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,21 @@ env:
jobs:
test:
name: Test
env:
postgis-version: "3.2"
redis-version: "6.2"
strategy:
matrix:
redis-version: ["5.0.6", "6.2"]
pg-version: ["13", "14"]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Install Redis
uses: zhulik/redis-action@v1.0.0
with:
redis version: ${{ matrix.redis-version }}
redis version: ${{ env.redis-version }}

- name: Install PostgreSQL
uses: nyaruka/postgis-action@v2
Expand All @@ -41,7 +43,7 @@ jobs:
psql -h localhost -U postgres --no-password -c "CREATE DATABASE mailroom_test;"
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: ${{ env.go-version }}

Expand All @@ -64,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Fetch GoFlow docs
# for backward compatibility, English docs are copied to root of docs directory
Expand All @@ -74,7 +76,7 @@ jobs:
cp ./docs/en-us/*.* docs/
- name: Install Go
uses: actions/setup-go@v1
uses: actions/setup-go@v3
with:
go-version: ${{ env.go-version }}

Expand Down

0 comments on commit db2094e

Please sign in to comment.