Skip to content

Commit 7555c79

Browse files
author
Mukesh Solanki
committed
Replace Circle CI with github actions
1 parent 3cdc4fe commit 7555c79

File tree

3 files changed

+29
-20
lines changed

3 files changed

+29
-20
lines changed

.circleci/config.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/android.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'master'
7+
push:
8+
branches:
9+
- 'master'
10+
11+
jobs:
12+
apk:
13+
name: Generate APK
14+
runs-on: ubuntu-18.04
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: set up JDK 1.8
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 1.8
22+
- name: Build debug APK
23+
run: bash ./gradlew assembleDebug --stacktrace
24+
- name: Upload APK
25+
uses: actions/upload-artifact@v1
26+
with:
27+
name: SampleApp
28+
path: app/build/outputs/apk/debug/app-debug.apk

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<a class="badge-align" href="https://www.codacy.com/app/mukeshsolanki/MarkdownView-Android?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=mukeshsolanki/MarkdownView-Android&amp;utm_campaign=Badge_Grade"><img src="https://api.codacy.com/project/badge/Grade/58e51bc418d349499b3eac9c3f6f3ef1"/></a>
44
<a href="https://jitpack.io/#mukeshsolanki/MarkdownView-Android"><img src="https://jitpack.io/v/mukeshsolanki/MarkdownView-Android/month.svg"/></a>
55
<a href="https://jitpack.io/#mukeshsolanki/MarkdownView-Android/"> <img src="https://jitpack.io/v/mukeshsolanki/MarkdownView-Android.svg" /></a>
6-
<a href="https://circleci.com/gh/mukeshsolanki/MarkdownView-Android/tree/master"> <img src="https://circleci.com/gh/mukeshsolanki/MarkdownView-Android/tree/master.svg?style=shield" /></a>
6+
<a href="https://github.com/mukeshsolanki/MarkdownView-Android/actions"> <img src="https://github.com/mukeshsolanki/MarkdownView-Android/workflows/Build/badge.svg" /></a>
77
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg"/></a>
88
<br /><br />
99
MarkdownView is a simple library that helps you display Markdown text or files on Android as a html page just like Github.

0 commit comments

Comments
 (0)