We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4370a77 commit 5279bcfCopy full SHA for 5279bcf
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ common:
12
+ uses: City-of-Helsinki/.github/.github/workflows/ci-django-api.yml@main
13
+ secrets: inherit
14
+ with:
15
+ python-version: 3.11
16
+ postgres-major-version: 13
17
+ extra-commands: |
18
+ echo 'SECRET_KEY=topsecret123' >> .env
sonar-project.properties
@@ -0,0 +1,9 @@
+sonar.projectKey = City-of-Helsinki_notification-service-api
+sonar.projectName = notification-service-api
+sonar.organization = city-of-helsinki
+sonar.python.version = 3.11
+sonar.python.coverage.reportPaths = coverage.xml
+sonar.sources = .
+sonar.exclusions = **/migrations/*,**/tests/*
+sonar.tests = .
+sonar.test.inclusions = **/tests/**/*
0 commit comments