fix: correct behavior when using method object as variable value acro… #306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code analysis | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
sonarqube: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out repository | |
- uses: actions/checkout@v2 | |
- name: Download SonarQube tools | |
run: | | |
mkdir sonar | |
cd sonar | |
wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-5.0.1.3006-linux.zip; | |
wget https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip; | |
unzip -j build-wrapper-linux-x86.zip; | |
unzip sonar-scanner-cli-5.0.1.3006-linux.zip | |
- name: Compiling | |
run: | | |
cmake . | |
sonar/build-wrapper-linux-x86-64 --out-dir wrapper_output make | |
- name: Run analyzer | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_ARGS: > | |
-Dsonar.projectKey=ArgonLang_Argon | |
-Dsonar.organization=argonlang | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.projectBaseDir=argon | |
-Dsonar.cfamily.build-wrapper-output=wrapper_output | |
run: sonar/sonar-scanner-5.0.1.3006-linux/bin/sonar-scanner ${SONAR_ARGS} |