Skip to content

Add more apple native targets (#777) #2151

Add more apple native targets (#777)

Add more apple native targets (#777) #2151

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
security-events: write
env:
GRADLE_OPTS: -Dorg.gradle.caching=true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
- uses: gradle/gradle-build-action@v2
with:
dependency-graph: generate-and-submit
gradle-home-cache-cleanup: true
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-kotlin-1.9.0
path:
~/.konan
- name: Build with Gradle
run: ./gradlew build
- name: Detekt
run: ./gradlew detekt
- name: Upload SARIF to Github using the upload-sarif action
uses: github/codeql-action/upload-sarif@v2
if: success() || failure()
with:
sarif_file: build/reports/detekt/detekt.sarif