Skip to content

New workflow for Sonar #1

New workflow for Sonar

New workflow for Sonar #1

Workflow file for this run

name: SonarCloud
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
env:
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install GCC compiler
run: sudo apt install g++-13
- name: Install sonar-scanner and build-wrapper
uses: SonarSource/sonarcloud-github-c-cpp@v2
- name: Run build-wrapper
run: |
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make -j5
- name: Run sonar-scanner
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
CXX: ${{ g++13 }}

Check failure on line 30 in .github/workflows/sonar.yml

View workflow run for this annotation

GitHub Actions / SonarCloud

Invalid workflow file

The workflow is not valid. .github/workflows/sonar.yml (Line: 30, Col: 16): Unexpected symbol: 'g++13'. Located at position 1 within expression: g++13
run: |
sonar-scanner --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"