diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index dcd2fed..b385509 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -10,7 +10,7 @@ on: # yamllint disable-line rule:truthy jobs: build: - name: Build + name: SonarCloud build and run sonar-scanner runs-on: ubuntu-latest env: # Directory where build-wrapper output will be placed diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 58d810f..e8800ab 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -12,6 +12,7 @@ on: # yamllint disable-line rule:truthy jobs: lint: + name: YAML lint runs-on: ubuntu-latest steps: - name: Checkout repository diff --git a/Makefile b/Makefile index f00b36d..0dcd1af 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,8 @@ build: dependencies cmake --build build --verbose dependencies: - vcpkg integrate install - vcpkg install + vcpkg --x-wait-for-lock integrate install + vcpkg --x-wait-for-lock install lint/markdown: markdownlint '**/*.md' && echo '✔ Your code looks good.'