Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
Add Github action for running tests on every PR
Browse files Browse the repository at this point in the history
  • Loading branch information
saket committed Dec 10, 2019
1 parent 969f704 commit ec0a1fa
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Run unit tests and code analyzers
run: ./gradlew check

0 comments on commit ec0a1fa

Please sign in to comment.