-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from VemundFredriksen/sonarcloud
Sonarcloud
- Loading branch information
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## Pull Request | ||
|
||
### Description | ||
<!Please provide a brief description of the changes you've made in this pull request.!> | ||
|
||
This PR enables new feature... | ||
|
||
### Type of Change | ||
<!Please select the relevant option by placing an "x" in the [ ].!> | ||
|
||
- [ ] Bug Fix | ||
- [ ] New Feature | ||
- [ ] Documentation Update | ||
- [ ] Code Refactoring | ||
- [ ] Other (please describe) | ||
|
||
### Checklist | ||
<!Before submitting this pull request, please make sure you have done the following:!> | ||
|
||
- [ ] I have reviewed the code to ensure it follows the project's coding standards. | ||
- [ ] I have tested the changes locally to verify that they work as expected. | ||
- [ ] I have updated the documentation if necessary. | ||
|
||
### Screenshots | ||
<!If your changes include any visible changes or new features, please add screenshots here.!> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sonarcloud: | ||
name: SonarCloud | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
sonar.projectKey=VemundFredriksen_SynthLung | ||
sonar.organization=vemundfredriksen | ||
|
||
# This is the name and version displayed in the SonarCloud UI. | ||
#sonar.projectName=SynthLung | ||
#sonar.projectVersion=1.0 | ||
|
||
|
||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | ||
#sonar.sources=. | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
#sonar.sourceEncoding=UTF-8 |