Skip to content

Instantly share code, notes, and snippets.

@dector
Created January 4, 2020 16:24
Show Gist options
  • Save dector/47f5a5a2949f983e609edae6f9027295 to your computer and use it in GitHub Desktop.
Save dector/47f5a5a2949f983e609edae6f9027295 to your computer and use it in GitHub Desktop.
name: dev
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run lint checks
run: ./gradlew lint
- name: Run tests
run: ./gradlew test
- name: Assemble debug app
run: ./gradlew assembleDebug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment