feature: add client_auth_method=none into tokens for clients with empty secret - outdated #412
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: JUnit tests on database | |
on: | |
pull_request: | |
branches: [ develop ] | |
permissions: | |
pull-requests: read | |
jobs: | |
container-test-job: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
database: [ 'postgresql-11', 'postgresql-15', 'mysql', 'mysql-8' ] | |
container: | |
image: cfidentity/uaa-${{ matrix.database }} | |
volumes: | |
- ${{ github.workspace }}:/root/uaa | |
options: --privileged --tty --interactive --shm-size=1G | |
steps: | |
- name: Set env | |
run: echo "DB=$(echo ${{ matrix.database }} | sed 's/[-0-9]//g')" >> $GITHUB_ENV | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: JUnit tests on container | |
id: testrun | |
run: /root/uaa/scripts/unit-tests.sh $DB,default | |
continue-on-error: true | |
- name: Test result upload | |
uses: actions/upload-artifact@v3 | |
if: steps.testrun.outcome == 'failure' | |
with: | |
name: Server test | |
path: /root/uaa/*/build/reports/tests/test/ | |
- name: Check error Result | |
run: exit 1 | |
if: steps.testrun.outcome == 'failure' |