From 634b4cbed559bfc96aed674968e9ea2bdcd67c79 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 3 Oct 2022 15:43:26 -0400 Subject: [PATCH] Switch to using single quotes Signed-off-by: Sebastian Malton --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b5aff6043..10b06f4249 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,14 +54,14 @@ jobs: - run: make test name: Run tests - if: ${{ matrix.type == "unit" }} + if: ${{ matrix.type == 'unit' }} - run: make test-extensions name: Run In-tree Extension tests - if: ${{ matrix.type == "unit" }} + if: ${{ matrix.type == 'unit' }} - run: make ci-validate-dev - if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') && matrix.type == "unit" }} + if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') && matrix.type == 'unit' }} name: Validate dev mode will work - name: Install integration test dependencies @@ -69,7 +69,7 @@ jobs: uses: medyagh/setup-minikube@master with: minikube-version: latest - if: ${{ runner.os == 'Linux' && matrix.type == "smoke" }} + if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration name: Run Linux integration tests @@ -80,11 +80,11 @@ jobs: shell: bash env: ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --arm64" - if: ${{ runner.os == 'macOS' && matrix.type == "smoke" }} + if: ${{ runner.os == 'macOS' && matrix.type == 'smoke' }} - run: make integration name: Run Windows integration tests shell: bash env: ELECTRON_BUILDER_EXTRA_ARGS: "--x64 --ia32" - if: ${{ runner.os == 'Windows' && matrix.type == "smoke" }} + if: ${{ runner.os == 'Windows' && matrix.type == 'smoke' }}