Skip to content

Bump version

Bump version #38

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Check Gradle wrapper
uses: gradle/[email protected]
- name: Set up JDK 1.8
uses: actions/[email protected]
with:
java-version: 1.8
- name: Set up Gradle Cache
uses: actions/[email protected]
with:
path: ~/.gradle
key: ${{ runner.OS }}-gradle-
- name: Build with Gradle
run: ./gradlew ktlintCheck detekt build
- name: Store reports
uses: actions/[email protected]
if: always()
with:
name: Reports
path: library/build/reports
- name: Upload coverage
uses: codecov/[email protected]
env:
CI: "true"
with:
token: ${{ secrets.CODECOV_TOKEN }}