From 6ecb2681961bb757ba55953ade01b86e1509058e Mon Sep 17 00:00:00 2001 From: light7734 Date: Sun, 20 Jul 2025 07:39:56 +0330 Subject: [PATCH] fix: formatting issues --- .drone.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1c2e327..94ab086 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,7 +12,8 @@ platform: steps: - name: tests shell: powershell - commands: ./tools/ci/steps/amd64_msvc_tests.ps1 + commands: + - ./tools/ci/steps/amd64_msvc_tests.ps1 --- kind: pipeline @@ -26,7 +27,8 @@ steps: - name: tests image: unit_tests:latest pull: if-not-exists - commands: ./tools/ci/steps/amd64_gcc_tests.sh + commands: + - ./tools/ci/steps/amd64_gcc_tests.sh --- kind: pipeline @@ -40,7 +42,8 @@ steps: - name: valgrind image: valgrind:latest pull: if-not-exists - commands: ./tools/ci/steps/amd64_gcc_valgrind.sh + commands: + - ./tools/ci/steps/amd64_gcc_valgrind.sh --- kind: pipeline @@ -54,7 +57,8 @@ steps: - name: leak sanitizer image: leak_sanitizer:latest pull: if-not-exists - commands: ./tools/ci/steps/amd64_clang_sanitizer_leak.sh + commands: + - ./tools/ci/steps/amd64_clang_sanitizer_leak.sh --- kind: pipeline @@ -69,7 +73,8 @@ steps: image: static_analysis:latest pull: if-not-exists privileged: true - commands: ./tools/ci/steps/static_analysis.sh + commands: + - ./tools/ci/steps/static_analysis.sh --- kind: pipeline @@ -83,4 +88,5 @@ steps: - name: clang format image: clang_format:latest pull: if-not-exists - commands: ./tools/ci/steps/style.sh + commands: + - ./tools/ci/steps/style.sh