Skip to content

Commit

Permalink
fixed conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleklaussconn committed Nov 8, 2023
1 parent e9f3f36 commit 0491a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ jobs:
MONGODB_TEST_CXN: mongodb://localhost:27017
FIX_TEST: ${{ matrix.fix-version }}
STORE_TYPE: ${{ matrix.store-type }}
run: if [ !(-z $FIX_TEST) && !(-z $STORE_TYPE) ]; then make generate-ci && make build && make $FIX_TEST; fi
run: if [ $FIX_TEST != "" && -z $STORE_TYPE != "" ]; then make generate-ci && make build && make $FIX_TEST; fi

0 comments on commit 0491a85

Please sign in to comment.