#3465 - Substructure match: add parameter to limit tautomer chain search only by matched struct #86
Workflow file for this run
This file contains hidden or 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: Sonar | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Sonar | |
| runs-on: self-hosted-sonar | |
| steps: | |
| - name: Install Unzip | |
| run: sudo apt-get install -y unzip | |
| - name: Install jq | |
| run: sudo apt-get install -y jq | |
| - name: check connection | |
| run: curl -v https://sonar.epam.com/api/server/version | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - uses: sonarsource/sonarqube-scan-action@master | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
| # If you wish to fail your job when the Quality Gate is red, uncomment the | |
| # following lines. This would typically be used to fail a deployment. | |
| # We do not recommend to use this in a pull request. Prefer using pull request | |
| # decoration instead. | |
| # - uses: sonarsource/sonarqube-quality-gate-action@master | |
| # timeout-minutes: 5 | |
| # env: | |
| # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| # Check the Quality Gate status. | |
| - name: SonarQube Quality Gate check | |
| id: sonarqube-quality-gate-check | |
| uses: sonarsource/sonarqube-quality-gate-action@master | |
| env: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} #OPTIONAL | |
| # Optionally you can use the output from the Quality Gate in another step. | |
| # The possible outputs of the `quality-gate-status` variable are `PASSED`, `WARN` or `FAILED`. | |
| - name: "Example show SonarQube Quality Gate Status value" | |
| run: echo "The Quality Gate status is ${{ steps.sonarqube-quality-gate-check.outputs.quality-gate-status }}" |