File tree Expand file tree Collapse file tree 4 files changed +49
-20
lines changed
Expand file tree Collapse file tree 4 files changed +49
-20
lines changed Original file line number Diff line number Diff line change 1+ name : " Validate Gradle Wrapper"
2+ on :
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ branches :
8+ - ' *'
9+
10+ jobs :
11+ validation :
12+ name : " Validation"
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v2
16+ - uses : gradle/wrapper-validation-action@v1
17+
Original file line number Diff line number Diff line change 1+ name : Merge checks
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - ' *'
10+
11+ jobs :
12+ build :
13+ name : Build project
14+ runs-on : ubuntu-latest
15+ if : ${{ !contains(github.event.head_commit.message, 'ci skip') }}
16+ steps :
17+ - name : Checkout Repo
18+ uses : actions/checkout@v2
19+
20+ - name : Cache Gradle Files
21+ uses : actions/cache@v2
22+ with :
23+ path : |
24+ ~/.gradle/caches/
25+ ~/.gradle/wrapper/
26+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
27+ restore-keys : |
28+ ${{ runner.os }}-gradle-
29+
30+ - name : Run Gradle tasks
31+ run : ./gradlew build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- Spyglass [ ![ Build Status] ( https://travis-ci.org/ linkedin/Spyglass.svg?branch=master )] ( https://travis-ci.org/ linkedin/Spyglass )
1+ Spyglass [ ![ Build Status] ( https://img.shields.io/github/workflow/status/ linkedin/Spyglass/Merge%20checks )] ( https://img.shields.io/github/workflow/status/ linkedin/Spyglass/Merge%20checks )
22========
33
44A powerful Android library that provides highly-customizable widgets (with smart defaults) to easily add social-media-esque mention (aka tag) support to your app
You can’t perform that action at this time.
0 commit comments