File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - dev
7+ - master
8+ pull_request :
9+
10+ jobs :
11+ build-and-test :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v2
15+
16+ - name : set up JDK 1.8
17+ uses : actions/setup-java@v1.4.3
18+ with :
19+ java-version : 1.8
20+
21+ - name : Cache Gradle dependencies
22+ uses : actions/cache@v2
23+ with :
24+ path : ~/.gradle/caches
25+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
26+ restore-keys : ${{ runner.os }}-gradle
27+
28+ - name : Build and run Tests
29+ run : ./gradlew check --stacktrace
Original file line number Diff line number Diff line change 1+ name : Build and deploy JavaDocs
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+ jobs :
9+ build-and-deploy-docs :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v2
13+
14+ - name : set up JDK 1.8
15+ uses : actions/setup-java@v1.4.3
16+ with :
17+ java-version : 1.8
18+
19+ - name : Cache Gradle dependencies
20+ uses : actions/cache@v2
21+ with :
22+ path : ~/.gradle/caches
23+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
24+ restore-keys : ${{ runner.os }}-gradle
25+
26+ - name : Build JavaDocs
27+ run : ./gradlew aggregatedJavadocs
28+
29+ - name : Deploy JavaDocs
30+ uses : peaceiris/actions-gh-pages@v3
31+ with :
32+ github_token : ${{ secrets.GITHUB_TOKEN }}
33+ publish_dir : ./build/docs
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# NewPipe Extractor
22
3- [ ![ Build Status] ( https://travis-ci.org /TeamNewPipe/NewPipeExtractor.svg?branch=master )] ( https://travis-ci.org /TeamNewPipe/NewPipeExtractor ) [ ![ JIT Pack Badge] ( https://jitpack.io/v/TeamNewPipe/NewPipeExtractor.svg )] ( https://jitpack.io/#TeamNewPipe/NewPipeExtractor ) [ JDoc] ( https://teamnewpipe.github.io/NewPipeExtractor/javadoc/ ) • [ Documentation] ( https://teamnewpipe.github.io/documentation/ )
3+ [ ![ Build Status] ( https://github.com /TeamNewPipe/NewPipeExtractor/workflows/CI/badge .svg?branch=dev&event=push )] ( https://github.com /TeamNewPipe/NewPipeExtractor/actions ) [ ![ JIT Pack Badge] ( https://jitpack.io/v/TeamNewPipe/NewPipeExtractor.svg )] ( https://jitpack.io/#TeamNewPipe/NewPipeExtractor ) [ JDoc] ( https://teamnewpipe.github.io/NewPipeExtractor/javadoc/ ) • [ Documentation] ( https://teamnewpipe.github.io/documentation/ )
44
55NewPipe Extractor is a library for extracting things from streaming sites. It is a core component of [ NewPipe] ( https://github.com/TeamNewPipe/NewPipe ) , but could be used independently.
66
You can’t perform that action at this time.
0 commit comments