Add gravatarImageUrlToGravatarImageUrl to utils + minor improvements #33
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: Code Style and Build check | |
on: | |
push: | |
branches: [ "trunk" ] | |
pull_request: | |
branches: [ "trunk" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Check code style | |
run: ./gradlew ktlintcheck | |
- name: Static code analysis | |
run: ./gradlew detekt | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Run unit tests | |
run: ./gradlew test |