diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-02-08 13:17:43 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-04-26 11:03:02 +0200 |
| commit | a199f85461ac7af507ee94d6e10b012f1c591bcb (patch) | |
| tree | 8f1fbfe4ad1abdb46b2002f7c296045f35706a47 /.github | |
| parent | 45d3c24a44aea918c93bae7dabf5b69a9ddacb3a (diff) | |
| download | mullvadvpn-a199f85461ac7af507ee94d6e10b012f1c591bcb.tar.xz mullvadvpn-a199f85461ac7af507ee94d6e10b012f1c591bcb.zip | |
Run clippy CI on Windows
Co-authored-by: David Lönnhager <david.l@mullvad.net>
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 |
