Skip to content

feat(effect): Add .thenGet(..) and .thenReturn(..) operations #112

feat(effect): Add .thenGet(..) and .thenReturn(..) operations

feat(effect): Add .thenGet(..) and .thenReturn(..) operations #112

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
workflow_call:
concurrency:
group: ci-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: oracle
java-version: 21
check-latest: true
- uses: gradle/gradle-build-action@v2
- run: ./gradlew compileJava compileJava17Java compileJava21Java compileTestJava compileJava17TestJava compileJava21TestJava
- run: ./gradlew checkstyleMain checkstyleJava17 checkstyleJava21 checkstyleTest checkstyleJava17Test checkstyleJava21Test
- run: ./gradlew sonarlintMain sonarlintJava17 sonarlintJava21 sonarlintTest sonarlintJava17Test sonarlintJava21Test
- run: ./gradlew test java17Test java21Test
- run: ./gradlew build
- run: ./gradlew jacocoTestReport --rerun
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true