qameta-ci is creating Allure report 🚀 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
- name: Set up Java 21 | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
cache: 'maven' | |
distribution: 'zulu' | |
- name: Run Test | |
run: ./mvnw verify | |
continue-on-error: true | |
- name: Setup Allure History | |
uses: actions/[email protected] | |
if: always() | |
continue-on-error: true | |
with: | |
ref: gh-pages | |
path: gh-pages | |
- name: Generate Allure Report | |
uses: simple-elf/[email protected] | |
if: always() | |
with: | |
allure_results: target/allure-results | |
allure_history: allure-history | |
- name: Publish Allure Report | |
if: always() | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: allure-history |