Skip to content

Achitheus is creating Allure report 🚀 #1

Achitheus is creating Allure report 🚀

Achitheus is creating Allure report 🚀 #1

Workflow file for this run

name: Allure Report
run-name: ${{ github.actor }} is 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: 9
cache: 'maven'
distribution: 'zulu'
- name: Run Test
run: ./mvnw verify -e
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