" -> '
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c589e7f..8381c55 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -15,7 +15,7 @@
jobs:
ci:
- if: github.event_name == "push" || github.event.pull_request.head.repo.full_name != github.repository
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ${{ matrix.os }}
env:
@@ -204,7 +204,7 @@
run: python3 .github/workflows/build_and_test.py ${{ runner.os }} x86 ${{ matrix.compiler }} ${{ matrix.version }}
ci-min-gw:
- if: github.event_name == "push" || github.event.pull_request.head.repo.full_name != github.repository
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: windows-latest
strategy:
@@ -228,7 +228,7 @@
run: ctest --test-dir build --no-tests=error
ci-msvs:
- if: github.event_name == "push" || github.event.pull_request.head.repo.full_name != github.repository
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ${{ matrix.toolset == 'v143' && 'windows-2022' || 'windows-latest' }}
strategy: