diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/rust-unused-dependencies.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/rust-unused-dependencies.yml b/.github/workflows/rust-unused-dependencies.yml index 69e253231b..0f2d7ea0b2 100644 --- a/.github/workflows/rust-unused-dependencies.yml +++ b/.github/workflows/rust-unused-dependencies.yml @@ -103,11 +103,17 @@ jobs: uses: actions/checkout@v4 - name: Checkout wireguard-go submodule - if: matrix.os == 'macos-latest' run: | git config --global --add safe.directory '*' + git submodule update --init --depth=1 git submodule update --init --recursive --depth=1 wireguard-go-rs + - name: Install msbuild + if: matrix.os == 'windows-latest' + uses: microsoft/setup-msbuild@v1.0.2 + with: + vs-version: 16 + - name: Install Protoc uses: arduino/setup-protoc@v3 with: |
