-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (52 loc) · 1.52 KB
/
allure-junit4-gradle-kts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: allure-junit4-gradle-kts
on:
push:
branches-ignore:
- '!master'
jobs:
autotests:
name: Run tests and generate Allure Report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: |
~/.m2/repository
~/.gradle/caches
key: ${{ runner.os }}-${{ github.workflow }}-${{ hashFiles('**/build.gradle.kts') }}
restore-keys: |
${{ runner.os }}-${{ github.workflow }}-
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install dependencies
run: ./gradlew compileTestJava
- name: Run Test
if: always()
run: ./gradlew test
continue-on-error: true
- name: Get Allure history
uses: actions/checkout@v2
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Allure Report action from marketplace
uses: simple-elf/allure-report-action@master
if: always()
#id: allure-report
with:
allure_results: build/allure-results
#gh_pages: gh-pages
#allure_report: allure-report
allure_history: allure-history
- name: Deploy report to Github Pages
if: always()
uses: peaceiris/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: allure-history