ACS-8197 Quote booleans in docker-compose #73
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: Alfresco SSL Generator CI | |
on: | |
pull_request: | |
branches: | |
- feature/** | |
- fix/** | |
- master | |
push: | |
branches: | |
- feature/** | |
- fix/** | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
test_new: | |
name: "Test new approach" | |
runs-on: ubuntu-latest | |
if: > | |
!contains(github.event.head_commit.message, '[skip tests]') && | |
!contains(github.event.head_commit.message, '[force]') | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.33.0 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.33.0 | |
- name: "Run testing script" | |
run: bash ./scripts/ci/test.sh | |
test_legacy: | |
name: "Test legacy approach" | |
runs-on: ubuntu-latest | |
if: > | |
!contains(github.event.head_commit.message, '[skip tests]') && | |
!contains(github.event.head_commit.message, '[force]') | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/get-build-info@v1.33.0 | |
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v1.33.0 | |
- name: "Run testing script" | |
run: bash ./scripts/ci/test_legacy.sh |