Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
with:
jvm: temurin:1.17
apps: mill
- run: mill mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources

- run: mill mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources
unit-tests:
strategy:
matrix:
Expand Down Expand Up @@ -93,4 +92,11 @@ jobs:
uses: codecov/codecov-action@v3
with:
directory: reports
flags: ${{ matrix.os }}
flags: ${{ matrix.os }}

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

4 changes: 4 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
sonar.projectKey=markehammons_slinc
sonar.organization=scalable-solutions
sonar.projectName=slinc

sonar.scala.version=3
core.sonar.projectBaseDir=core
core.sonar.sources=src/
Expand Down