fix(deps): update dependency com.michael-bull.kotlin-result:kotlin-re… #3373
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- renovate/** | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4.1.0 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
gradle-home-cache-cleanup: true | |
add-job-summary: always | |
dependency-graph: generate-and-submit | |
- name: Check changelog format | |
uses: mindsers/changelog-reader-action@b97ce03a10d9bdbb07beb491c76a5a01d78cd3ef # v2.2.2 | |
with: | |
path: ./CHANGELOG.md | |
validation_level: error | |
- name: Run unit tests | |
run: ./gradlew --no-configuration-cache --stacktrace check -PslimTests | |
- name: (Fail-only) Upload test report | |
if: failure() | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
with: | |
name: Test report | |
path: '**/build/reports/tests/**' | |
dependency-review: | |
runs-on: macos-14 | |
if: "github.event_name == 'push' && github.event.ref != 'refs/heads/main'" | |
needs: | |
- check | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@9129d7d40b8c12c1ed0f60400d00c92d437adcce # v4 | |
with: | |
base-ref: refs/heads/main | |
head-ref: ${{ github.ref }} | |
deploy-release-snapshot: | |
runs-on: macos-14 | |
if: "github.event_name == 'push' && github.event.ref == 'refs/heads/main'" | |
needs: | |
- check | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK | |
uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4.1.0 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/main' }} | |
gradle-home-cache-cleanup: true | |
add-job-summary: always | |
dependency-graph: generate-and-submit | |
- name: Build release APK | |
run: | | |
./scripts/setup-age.sh | |
./scripts/signing-setup.sh "$AGE_SECRET_KEY" | |
./gradlew --no-configuration-cache --stacktrace collectReleaseApks | |
./scripts/signing-cleanup.sh | |
./scripts/deploy-snapshot.sh | |
env: | |
AGE_SECRET_KEY: ${{ secrets.AGE_SECRET_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} |