[ELY-2613] Update an assertEquals call in ScramServerCompatibilityTest#testAllowedAuthorizationId so that the expected value and actual value are passed in the correct order #1154
Workflow file for this run
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: Pull Request CI | |
on: | |
pull_request: | |
branches: | |
- 1.17.x | |
- 1.15.x | |
- 1.x | |
- 2.x | |
- master | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
# ELY-2204 - Temporarily preventing OidcTest from running on macOS since there | |
# are intermittent issues with starting up the Docker container. | |
#- if: matrix.os == 'macos-latest' | |
# name: Install docker | |
# run: | | |
# brew install docker docker-machine docker-compose | |
# brew services start docker-machine | |
# docker-machine create --driver virtualbox default | |
# docker --version | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Version Info | |
run: mvn -version | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml |