diff options
author | Morph <[email protected]> | 2023-07-06 22:34:26 -0400 |
---|---|---|
committer | Morph <[email protected]> | 2023-07-07 02:04:13 -0400 |
commit | c652e42492b7f41e9a65a229b2868bea39ad6adb (patch) | |
tree | 3778cd6512ad950572e2d965dc9855ee678f9807 /.github/workflows | |
parent | eacec2ae125bfc1134e0dd3a9347cf8a51f3b3f1 (diff) | |
download | yuzu-mainline-c652e42492b7f41e9a65a229b2868bea39ad6adb.tar.gz yuzu-mainline-c652e42492b7f41e9a65a229b2868bea39ad6adb.zip |
github: Checkout source first (MSVC)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/verify.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 19c3a4089..6420fd82b 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -73,6 +73,10 @@ jobs: needs: format runs-on: windows-2022 steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Set up cache uses: actions/cache@v3 with: @@ -96,10 +100,6 @@ jobs: run: .\.ci\scripts\windows\install-vulkan-sdk.ps1 - name: Set up MSVC uses: ilammy/msvc-dev-cmd@v1 - - uses: actions/checkout@v3 - with: - submodules: recursive - fetch-depth: 0 - name: Configure env: CC: cl.exe |