removed setup_rust
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Has been cancelled
Rust Cross-Platform Build / Run Tests (push) Has been cancelled
Rust Cross-Platform Build / Set Tag Name (push) Has been cancelled
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Has been cancelled
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Has been cancelled
Rust Cross-Platform Build / Build and Push Docker Image (push) Has been cancelled
Rust Cross-Platform Build / Create Tag (push) Has been cancelled
Rust Cross-Platform Build / Workflow Summary (push) Has been cancelled

This commit is contained in:
2025-09-26 11:15:30 +02:00
parent 7a68df41ac
commit 8910155524

View File

@@ -54,24 +54,24 @@ jobs:
exit 1
fi
setup-rust:
name: Setup Rust Toolchain
needs: detect-project
if: ${{ !failure() && !cancelled() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu
components: rustfmt, clippy
#setup-rust:
# name: Setup Rust Toolchain
# needs: detect-project
# if: ${{ !failure() && !cancelled() }}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Install Rust
# uses: dtolnay/rust-toolchain@stable
# with:
# toolchain: stable
# targets: x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu
# components: rustfmt, clippy
test:
name: Run Tests
needs: [detect-project, setup-rust]
needs: [detect-project]
if: ${{ !failure() && !cancelled() }}
runs-on: ubuntu-latest
steps:
@@ -134,7 +134,7 @@ jobs:
# audit:
# name: Security Audit
# needs: [detect-project, setup-rust]
# needs: [detect-project]
# if: ${{ !failure() && !cancelled() }}
# runs-on: ubuntu-latest
# steps:
@@ -154,7 +154,7 @@ jobs:
build:
name: Build (${{ matrix.target }})
needs: [detect-project, setup-rust, test, audit]
needs: [detect-project, test]
if: ${{ !failure() && !cancelled() }}
runs-on: ubuntu-latest
strategy: