Skip to content

Bump io.mockk:mockk from 1.13.7 to 1.13.8 #66

Bump io.mockk:mockk from 1.13.7 to 1.13.8

Bump io.mockk:mockk from 1.13.7 to 1.13.8 #66

Workflow file for this run

# Run tests on every pull request
# Run tests on every commit into `main`
name: Android CI checks
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
jobs:
checks:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Static analysis
run: ./gradlew lintDebug detekt
- name: Unit tests
run: ./gradlew testDebugUnitTest
- name: Kover report
run: ./gradlew koverMergedReport
# - name: Add coverage report to PR
# id: kover
# uses: mi-kas/kover-report@v1.2-beta
# with:
# path: ${{ github.workspace }}/build/reports/kover/merged/xml/report.xml
# token: ${{ secrets.GITHUB_TOKEN }}
# title: Code Coverage
# update-comment: true
# min-coverage-overall: 80
# min-coverage-changed-files: 80
- name: Codecov
uses: codecov/codecov-action@v3
with:
files: ./build/reports/kover/merged/xml/report.xml
flags: unittests
verbose: true
- name: Upload reports
uses: actions/upload-artifact@v3
with:
path: "**/build/reports/**"
retention-days: 7