From 60001240626ea4f70154ab4b9df2ef876ba6d676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Sat, 22 Oct 2022 16:24:10 +0000 Subject: [PATCH] Add release targets (#62) * add win/macos release targets * Add manual run option * Deleted Clippy check on release * Changes toolchain version --- .github/workflows/release_win_osx.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/release_win_osx.yml b/.github/workflows/release_win_osx.yml index 1b40f358..a14bb1ff 100644 --- a/.github/workflows/release_win_osx.yml +++ b/.github/workflows/release_win_osx.yml @@ -16,25 +16,10 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.57.0 + toolchain: stable profile: minimal override: true components: rustfmt, clippy - - uses: actions-rs/cargo@v1.0.1 - name: Check format - with: - command: fmt - args: --all -- --check - - uses: actions-rs/cargo@v1.0.1 - name: Run clippy - with: - command: clippy - args: --all-targets --locked -- -D warnings - - uses: actions-rs/cargo@v1.0.1 - name: Run clippy (All features) - with: - command: clippy - args: --all-targets --locked --all-features -- -D warnings - uses: actions-rs/cargo@v1.0.1 name: Run tests with: