fix: use 127.0.0.1 instead of localhost for temporal address #3376
This file contains hidden or 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: Testing | |
| on: [push, pull_request] | |
| concurrency: | |
| cancel-in-progress: ${{ !contains(github.ref, 'release/')}} | |
| group: tests-${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| unit: | |
| name: Unit Testing | |
| uses: ./.github/workflows/run-test-suite.yml | |
| with: | |
| fail-fast: false | |
| test-command: composer test:unit | |
| functional: | |
| name: Functional Testing | |
| uses: ./.github/workflows/run-test-suite.yml | |
| with: | |
| fail-fast: false | |
| test-command: composer test:func | |
| download-binaries: true | |
| acceptance-slow: | |
| name: Acceptance Testing (Slow) | |
| uses: ./.github/workflows/run-test-suite.yml | |
| with: | |
| fail-fast: false | |
| test-command: composer test:accept-slow | |
| download-binaries: true | |
| acceptance-fast: | |
| name: Acceptance Testing (Fast) | |
| uses: ./.github/workflows/run-test-suite.yml | |
| with: | |
| fail-fast: false | |
| test-command: composer test:accept-fast | |
| download-binaries: true |