Skip to content

Bump net.datafaker:datafaker from 2.2.0 to 2.2.1 #334

Bump net.datafaker:datafaker from 2.2.0 to 2.2.1

Bump net.datafaker:datafaker from 2.2.0 to 2.2.1 #334

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
local-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 22
distribution: oracle
- 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