Use -opt-in instead of -Xopt-in for Kotlin compiler #336
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: | |
branches-ignore: gh-pages | |
pull_request: | |
branches-ignore: gh-pages | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Set up JDK 1.13 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.13 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew assemble | |
- name: Run the tests | |
run: ./gradlew check | |
- name: Upload test report | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test_report | |
path: build/reports/tests/test | |
if: always() |