From c598ba7aa3350159a1d05ae18cf01abc0279f316 Mon Sep 17 00:00:00 2001 From: spbqaru <135847467+spbqaru@users.noreply.github.com> Date: Thu, 18 Jan 2024 23:55:10 +0300 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index fc2d0ea..8d4e3e6 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -37,47 +37,12 @@ jobs: id: build run: mvn clean install -DskipTests -ntp - - name: Start Selenoid - uses: Xotabu4/selenoid-github-action@v2 - id: start-selenoid - - - name: Check Selenoid has been started - run: curl http://localhost:4444/status - - name: Tests id: functests timeout-minutes: 10 continue-on-error: true run: mvn test -ntp - - name: Get Allure history - uses: actions/checkout@v3 - id: allure-setup - continue-on-error: true - with: - ref: gh-pages - path: gh-pages - - - name: Generate Allure report - uses: simple-elf/allure-report-action@master - with: - allure_results: target/allure-results - allure_report: target/allure-report - allure_history: allure-history - - - name: Upload Allure report - uses: actions/upload-artifact@master - with: - name: Allure report - path: target/allure-report - - - name: Deploy Allure report to Github Pages - uses: peaceiris/actions-gh-pages@v2 - env: - PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PUBLISH_BRANCH: gh-pages - PUBLISH_DIR: allure-history - - name: Check tests are passed if: ${{ steps.functests.outcome != 'success' }} run: |