DPP 0.25 (WIP) #171
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
on: | |
push: | |
branches: [ master, release-*, feature-* ] | |
pull_request: | |
branches: [ master, release-*, feature-* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Runs CI | |
- name: Tests | |
run: | | |
./gradlew assemble -x ktlint | |
./gradlew build test --info -x ktlint |