fix(deps): update kotlin #412
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHubUserFinder | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- development | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "*.png" | |
- docs | |
jobs: | |
pre-conditions: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: corretto | |
java-version: 18 | |
- name: detekt | |
run: ./gradlew detekt --stacktrace | |
- name: GitHub Action for SwiftLint (Only files changed in the PR) | |
uses: norio-nomura/[email protected] | |
env: | |
WORKING_DIRECTORY: ./iosApp | |
- name: Verify and generate coverage report | |
run: ./gradlew koverVerify koverXmlReport --stacktrace | |
- name: Upload test reports | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: shared-test-report | |
path: ${{ github.workspace }}/build/reports/kover/report.xml | |
retention-days: 5 | |
build-android: | |
needs: pre-conditions | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: corretto | |
java-version: 18 | |
- name: Build | |
run: ./gradlew build --stacktrace | |
test-report: | |
needs: pre-conditions | |
runs-on: ubuntu-24.04 | |
permissions: | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Download report | |
uses: actions/download-artifact@v4 | |
with: | |
name: shared-test-report | |
- name: Add coverage report to PR | |
id: kover | |
uses: mi-kas/[email protected] | |
with: | |
path: ${{ github.workspace }}/report.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
title: Code Coverage | |
update-comment: true | |
build-ios: | |
needs: pre-conditions | |
runs-on: macos-14 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: corretto | |
java-version: 18 | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Select Xcode version | |
run: | | |
sudo xcode-select -s /Applications/Xcode_14.3.app | |
- name: Build | |
run: | | |
cd iosApp | |
xcodebuild build-for-testing \ | |
-scheme iosApp \ | |
-project iosApp.xcodeproj \ | |
-destination 'platform=iOS Simulator,name=iPhone 14,OS=16.4' |