Bump System.Data.Odbc from 4.7.0 to 8.0.0 #30
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
on: | |
# Trigger analysis when pushing in master or pull requests, and when creating | |
# a pull request. | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened] | |
name: Sonar Analysis | |
jobs: | |
sonarcloud: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Sonarscanner for dotnet | |
uses: Secbyte/[email protected] | |
with: | |
buildCommand: dotnet build . | |
projectKey: Viostream_dbup-snowflake | |
projectName: dbup-snowflake | |
sonarOrganisation: viostream | |
beginArguments: > | |
/d:sonar.verbose="true" | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |