Skip to content

Commit

Permalink
Merge pull request #1 from VemundFredriksen/sonarcloud
Browse files Browse the repository at this point in the history
Sonarcloud
  • Loading branch information
VemundFredriksen authored Oct 13, 2023
2 parents 400f796 + 4daac4e commit 3408f5a
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/pull_request_template.md
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.!>
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
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 }}
13 changes: 13 additions & 0 deletions sonar-project.properties
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

0 comments on commit 3408f5a

Please sign in to comment.