Skip to content

Bump org.testcontainers:testcontainers-bom from 1.19.1 to 1.19.2 #985

Bump org.testcontainers:testcontainers-bom from 1.19.1 to 1.19.2

Bump org.testcontainers:testcontainers-bom from 1.19.1 to 1.19.2 #985

Workflow file for this run

name: Build master branch
on:
push:
branches-ignore:
- 'gh-pages'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8'
server-id: krista-maven-public
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and Check
run: mvn --no-transfer-progress -Dstyle.color=always --fail-at-end verify
env:
MAVEN_USERNAME: ${{ secrets.KRISTA_REPO_USER }}
MAVEN_PASSWORD: ${{ secrets.KRISTA_REPO_PASSWD }}
MAVEN_OPTS: -Djansi.force=true
- name: Upload report files
uses: actions/upload-artifact@v3
if: always()
with:
name: allure-results
path: ./target/allure-results
publish-report:
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Download report files
uses: actions/download-artifact@v3
with:
name: allure-results
path: ./target/allure-results
# Thanks to @simple1elf (Telegram) for the working template
# https://github.com/simple-elf/github-allure-history
- name: Get Allure history
uses: actions/checkout@v3
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Allure Report action
uses: simple-elf/allure-report-action@master
#uses: ./allure-report-action
#id: allure-report
with:
allure_results: 'target/allure-results'
allure_history: allure-history
- name: Deploy report to Github Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./allure-history
publish_branch: gh-pages