removed useless if statemnt

This commit is contained in:
2025-10-03 14:19:48 +02:00
parent c745125f20
commit 820952089a
2 changed files with 1 additions and 18 deletions

View File

@@ -20,8 +20,6 @@ jobs:
detect-project:
name: Detect Rust Project
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
outputs:
project-dir: ${{ steps.detect.outputs.project-dir }}
project-name: ${{ steps.detect.outputs.project-name }}
@@ -58,8 +56,6 @@ jobs:
needs: [detect-project]
if: ${{ !failure() && !cancelled() }}
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
steps:
- uses: actions/checkout@v4
@@ -83,8 +79,6 @@ jobs:
set-tag:
name: Set Tag Name
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
outputs:
tag_name: ${{ steps.set_tag.outputs.tag_name }}
steps:
@@ -145,8 +139,6 @@ jobs:
needs: [detect-project, test]
if: ${{ !failure() && !cancelled() }}
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
strategy:
matrix:
include:
@@ -206,8 +198,6 @@ jobs:
needs.build.result == 'success' &&
github.event_name != 'pull_request'
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
environment: production
steps:
- uses: actions/checkout@v4
@@ -243,12 +233,7 @@ jobs:
tag:
name: Create Tag
needs: [docker-build, build, set-tag]
#if: |
# github.event_name == 'push' &&
# needs.docker-build.result == 'success'
runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache
steps:
- uses: actions/checkout@v4
with:

View File

@@ -1,5 +1,3 @@
/// # Models Module
///
/// This module defines all data structures (DTOs) used for communication between WatcherAgent and the backend server, as well as hardware metrics and Docker container info.
@@ -194,4 +192,4 @@ pub struct DockerContainer {
pub _net_in: f64,
pub _net_out: f64,
pub _cpu_load: f64,
}
}