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