From 91554cac5613860f80bdfd4179f506c65c7461bf 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:09:44 +0000 Subject: [PATCH] GitHub action cleanup2 (#132) * Changed clippy args for PR pipeline * changes crates-publish toolchain version to stable * Enhanced clippy for PRs * Fixes typo --- .github/workflows/check-and-lint.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check-and-lint.yaml b/.github/workflows/check-and-lint.yaml index 63b18726..5706976a 100644 --- a/.github/workflows/check-and-lint.yaml +++ b/.github/workflows/check-and-lint.yaml @@ -10,8 +10,8 @@ name: Check and Lint jobs: check: name: Check - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 @@ -26,8 +26,8 @@ jobs: fmt: name: Rustfmt - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 @@ -44,8 +44,8 @@ jobs: clippy: name: Clippy - matrix: - platform: [ ubuntu-latest, macos-latest, windows-latest ] + matrix: + platform: [ ubuntu-latest, macos-latest, windows-latest ] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2