diff options
| author | David Lönnhager <david.l@mullvad.net> | 2023-04-26 11:04:27 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-04-26 11:04:27 +0200 |
| commit | bd7f9715146d39ca979cdea8694c1460b372d9ac (patch) | |
| tree | 8f1fbfe4ad1abdb46b2002f7c296045f35706a47 /.github | |
| parent | d50d55254e0e1378bc6f7b5acbf6be59ed909f6f (diff) | |
| parent | a199f85461ac7af507ee94d6e10b012f1c591bcb (diff) | |
| download | mullvadvpn-bd7f9715146d39ca979cdea8694c1460b372d9ac.tar.xz mullvadvpn-bd7f9715146d39ca979cdea8694c1460b372d9ac.zip | |
Merge branch 'win-fix-clippy-errors-des-178'
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/clippy.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 524e329422..2c28af450b 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -9,7 +9,10 @@ on: workflow_dispatch: jobs: clippy_check: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout repository uses: actions/checkout@v3 @@ -29,11 +32,13 @@ jobs: override: true - name: Install build dependencies + if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update sudo apt-get install libdbus-1-dev - name: Clippy check + shell: bash run: |- export RUSTFLAGS="--deny warnings" source env.sh |
