Update certificates and make pinning optional #37
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: 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 }} |