diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-01-16 14:51:31 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-01-24 17:35:04 +0100 |
| commit | c9f70bee5ad46add94010e282de0711b6340a582 (patch) | |
| tree | 8b04bfa55f5fb58b91712d3d3a01f2cf92b63757 /.github | |
| parent | e0f6311950c40ab8cf7d57d3096c21a31492e991 (diff) | |
| download | mullvadvpn-c9f70bee5ad46add94010e282de0711b6340a582.tar.xz mullvadvpn-c9f70bee5ad46add94010e282de0711b6340a582.zip | |
Update clippy workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/clippy.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index ec021eb956..ec1ccb030e 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -63,8 +63,17 @@ jobs: sudo apt-get update sudo apt-get install libdbus-1-dev + - name: Install msbuild + if: matrix.os == 'windows-latest' + uses: microsoft/setup-msbuild@v1.0.2 + with: + vs-version: 16 + + - name: Install latest zig + if: matrix.os == 'windows-latest' + uses: mlugg/setup-zig@v1 + - name: Install Go - if: matrix.os == 'linux-latest' || matrix.os == 'macos-latest' uses: actions/setup-go@v5 with: go-version: 1.21.3 |
