-
-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (29 loc) · 801 Bytes
/
CI.yml
File metadata and controls
33 lines (29 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- uses: actions/checkout@v6
- uses: gradle/actions/setup-gradle@v6
with:
build-scan-publish: true
build-scan-terms-of-use-url: 'https://gradle.com/terms-of-service'
build-scan-terms-of-use-agree: 'yes'
- name: Build with Gradle
run: ./gradlew build
- name: Detekt
run: ./gradlew detekt
if: always()
- name: Upload SARIF to Github using the upload-sarif action
uses: github/codeql-action/upload-sarif@v4
if: always()
with:
sarif_file: build/reports/detekt/detekt.sarif