Automatic SonarCloud Scan #122
Workflow file for this run
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
# Workflow name | |
name: SonarCloud scan | |
# Specify when the Action should be triggered: when a pull request is opened against the 'devel' or 'master' branch | |
on: | |
push: | |
branches: [devel, master] | |
pull_request: | |
branches: [devel, master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Prepare the enviroment for Sonar scanner | |
- name: Prepare Sonar scanner | |
working-directory: ${{ env.BUILD_DIR }} | |
run: | | |
wget -nv -O sonar-scanner-cli.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${{ vars.SONAR_VERSION }}-linux.zip | |
unzip -q sonar-scanner-cli.zip -d sonar-scanner-cli | |
mv sonar-scanner-cli/*/* sonar-scanner-cli/ | |
echo "${PWD}/sonar-scanner-cli/bin/" >> $GITHUB_PATH | |
# Run the SonarCloud Scan | |
- name: SonarCloud Scan | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN -Dsonar.organization=i2pc -Dsonar.projectKey=I2PC_xmipp |