-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (42 loc) · 1.22 KB
/
tests-and-report.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
name: Tests run with Allure Report
run-name: ${{ github.actor }} is running tests and creating Allure report ?
on:
push:
branches-ignore:
- '!main'
jobs:
autotests:
name: Run tests and generate Allure Report
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
cache: 'maven'
distribution: 'zulu'
- name: Run Test
run: ./mvnw verify -e -P env-test
continue-on-error: true
- name: Get Allure history
uses: actions/checkout@v3
if: always()
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Allure Report action from marketplace
uses: simple-elf/[email protected]
if: always()
with:
allure_results: target/allure-results
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