fix: formatting issues
Some checks reported errors
continuous-integration/drone/pr Build encountered an error

This commit is contained in:
light7734 2025-07-20 07:39:56 +03:30
parent 144ca1aa4f
commit 6ecb268196
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -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