Local Testbed - HelloAPI - Shoot, missed a bunch of places in workflows to update name of ServerConfig. #29
Workflow file for this run
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
| # Workflow to test the HelloAPI locally | |
| name: Local Testbed - HelloAPI | |
| run-name: ${{ format('{0} - {1}', github.workflow, github.event_name == 'push' && github.event.head_commit.message || 'Manual Run') }} | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| push: | |
| paths: | |
| - '.github/workflows/TEST_HelloAPI_local.yml' | |
| - '.github/actions/test_config/**' | |
| - 'tests/cases/apis/HelloAPI/local/**' | |
| - 'tests/config/**' | |
| - 'requirements.txt' | |
| jobs: | |
| run_testbed_hello: | |
| name: Run HelloAPI Local Testbed | |
| runs-on: ubuntu-22.04 | |
| concurrency: | |
| group: ${{ github.repository }}-${{ github.ref }}-${{ github.workflow }}-HelloAPI-local | |
| cancel-in-progress: true | |
| steps: | |
| # 1. Local checkout | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Get Dependencies | |
| uses: opengamedata/setup-ogd-py-dependencies@v1.0 | |
| with: | |
| python_version: ${{ vars.OGD_PYTHON_VERSION }} | |
| - name: Local self-install | |
| run: python -m pip install -e . | |
| - name: Set up Config File | |
| uses: ./.github/actions/test_config | |
| with: | |
| verbose_output: "True" | |
| with_hello_api: "True" | |
| # 2. Build & configure remote environments | |
| # 3. Perform tests | |
| - name: Execute testbed | |
| run: python -m unittest discover -s tests/cases/apis/HelloAPI/local/ -p "t_*.py" -t ./ | |
| # 4. Cleanup & complete | |
| - name: Upload logs as artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "test-log" | |
| path: ./*.log |