File tree Expand file tree Collapse file tree 4 files changed +34
-10
lines changed
Expand file tree Collapse file tree 4 files changed +34
-10
lines changed Original file line number Diff line number Diff line change 1+ name : ci
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - uses : actions/checkout@v2
11+
12+ - uses : actions/cache@v1
13+ with :
14+ path : ~/.gradle/wrapper
15+ key : ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.*') }}
16+ restore-keys : |
17+ ${{ runner.os }}-gradle-wrapper-
18+
19+ - uses : actions/cache@v1
20+ with :
21+ path : ~/.gradle/caches
22+ key : ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle.kts') }} }}
23+ restore-keys : |
24+ ${{ runner.os }}-gradle-caches-
25+
26+ - uses : actions/setup-java@v1
27+ with :
28+ java-version : 1.8
29+
30+ - run : ./gradlew check
Original file line number Diff line number Diff line change 77# Git
88! .git *
99
10+ # GitHub
11+ ! /.github
12+
1013# EditorConfig
1114! .editorconfig
1215
1619* .ipr
1720* .iws
1821
19- # Travis CI
20- ! .travis.yml
21-
2222# Gradle
2323build /
2424
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# kotlin-inline-logger
22
3- [ ![ Release] ( https://api.bintray.com/packages/michaelbull/maven/kotlin-inline-logger/images/download.svg )] ( https://bintray.com/michaelbull/maven/kotlin-inline-logger/_latestVersion ) [ ![ Build Status] ( https://travis-ci.org /michaelbull/kotlin-inline-logger.svg?branch=master )] ( https://travis-ci.org /michaelbull/kotlin-inline-logger ) [ ![ License] ( https://img.shields.io/github/license/michaelbull/kotlin-inline-logger.svg )] ( https://github.com/michaelbull/kotlin-inline-logger/blob/master/LICENSE )
3+ [ ![ Release] ( https://api.bintray.com/packages/michaelbull/maven/kotlin-inline-logger/images/download.svg )] ( https://bintray.com/michaelbull/maven/kotlin-inline-logger/_latestVersion ) [ ![ CI Status] ( https://github.com /michaelbull/kotlin-inline-logger/workflows/ci/badge .svg )] ( https://github.com /michaelbull/kotlin-inline-logger/actions?query=workflow%3Aci ) [ ![ License] ( https://img.shields.io/github/license/michaelbull/kotlin-inline-logger.svg )] ( https://github.com/michaelbull/kotlin-inline-logger/blob/master/LICENSE )
44
55A logger facilitating lazily-evaluated log calls via Kotlin's inline [ classes] [ inline-classes ] & [ functions] [ inline-functions ] .
66
You can’t perform that action at this time.
0 commit comments