From cb931d3ae7837064a9517b10fab3307f4c52d28e Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Mon, 10 Mar 2025 01:17:16 +0900 Subject: [PATCH] update --- .github/workflows/check-audit.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-audit.yml b/.github/workflows/check-audit.yml index 584610eb..b7457d56 100644 --- a/.github/workflows/check-audit.yml +++ b/.github/workflows/check-audit.yml @@ -29,10 +29,17 @@ jobs: - name: Load audit settings(json) run: | - $audit_settings = Get-Content -Path ./config/hayabusa_rules_meta.json -Raw | ConvertFrom-Json - $audit_settings + $startTime = Get-Date + $audit_settings = Get-Content -Path ./config/hayabusa_rules_meta.json -Raw | ConvertFrom-Json + $endTime = Get-Date + $duration = $endTime - $startTime + Write-Output "Duration: $duration" - name: Load audit settings(csv) run: | - $audit_settings = Import-Csv .config/eid_subcategory_mapping.csv - $audit_settings \ No newline at end of file + $startTime = Get-Date + $audit_settings = Import-Csv ./config/eid_subcategory_mapping.csv + $audit_settings + $endTime = Get-Date + $duration = $endTime - $startTime + Write-Output "Duration: $duration" \ No newline at end of file