Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Avoid using dummy matrix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Jun 9, 2022
1 parent e19b114 commit 27e1dc5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,11 +314,11 @@ jobs:
fail-fast: false
matrix:
include:
- _: monolith
_db: SQLite
- arrangement: monolith
database: SQLite

- _: monolith
postgres: Postgres
- arrangement: monolith
database: Postgres

steps:
# The path is set via a file given by $GITHUB_PATH. We need both Go 1.17 and GOPATH on the path to run Complement.
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:

- run: |
set -o pipefail
POSTGRES=${{ matrix.postgres && 1 }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
POSTGRES=${{ (matrix.database == 'Postgres') && 1 }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
shell: bash
name: Run Complement Tests
Expand Down

0 comments on commit 27e1dc5

Please sign in to comment.