Fix #3592. Bad Input Error if pbjs s2s config contains alias configuration for a disabled adapter #1
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: Module functional tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '.github/**' | |
branches: | |
- master | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 21 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
cache: 'maven' | |
java-version: ${{ matrix.java }} | |
- name: Build with Maven | |
run: mvn package -DskipUnitTests=true --file extra/pom.xml | |
- name: Run module tests | |
run: mvn -B verify -DskipUnitTests=true -DskipFunctionalTests=true -DskipModuleFunctionalTests=false -Dtests.max-container-count=5 -DdockerfileName=Dockerfile-modules --file extra/pom.xml |