Skip to content

Bump allure.version from 2.23.0 to 2.24.0 #238

Bump allure.version from 2.23.0 to 2.24.0

Bump allure.version from 2.23.0 to 2.24.0 #238

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
local-test:
runs-on: ubuntu-latest
services:
chrome:
image: selenium/standalone-chrome
options: --health-cmd '/opt/bin/check-grid.sh'
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: adopt
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B -q -DskipTests package --file pom.xml
- name: Run local tests
run: mvn -B -q test -Pweb-execution -Dsuite=local -Dtarget=local -Dheadless=true -Dbrowser=chrome