Skip to content

refactor/kotest: AnnotationSpec #15

refactor/kotest: AnnotationSpec

refactor/kotest: AnnotationSpec #15

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
build-and-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: JDK Setup
uses: actions/[email protected]
with:
distribution: 'liberica'
java-version: '21'
cache: 'gradle'
- name: Test and Build
run: ./gradlew clean test build
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./build/reports/
verbose: true