From c85adb8980bc8ff8c1271ccad4ddd4be8bb50a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Thu, 3 Nov 2022 19:19:00 +0000 Subject: [PATCH] Update check-and-lint.yaml --- .github/workflows/check-and-lint.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-and-lint.yaml b/.github/workflows/check-and-lint.yaml index 5706976a..e115078d 100644 --- a/.github/workflows/check-and-lint.yaml +++ b/.github/workflows/check-and-lint.yaml @@ -10,8 +10,9 @@ name: Check and Lint jobs: check: name: Check - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + strategy: + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 @@ -26,8 +27,9 @@ jobs: fmt: name: Rustfmt - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + strategy: + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 @@ -44,8 +46,9 @@ jobs: clippy: name: Clippy - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + strategy: + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2