CI Script - OGD Common - Fix some import paths, and add better function docstring. #129
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
# Workflow to build and test the APIUtils project | |
name: CI Script - OGD Common | |
run-name: ${{ format('{0} - {1}', github.workflow, github.event_name == 'push' && github.event.head_commit.message || 'Manual Run') }} | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '.github/workflows/CI_common.yml' | |
- '.github/workflows/BUILD_common.yml' | |
- '.github/actions/**' | |
- 'pyproject.toml' | |
- 'requirements.txt' | |
- 'src/**' | |
jobs: | |
build: | |
name: Build Python Package | |
uses: ./.github/workflows/BUILD_common.yml | |
with: | |
with_caching: false | |
# Run testbeds in configs module | |
testbed_configs: | |
name: Config Testbeds | |
needs: build | |
uses: ./.github/workflows/TEST_Configs.yml | |
testbed_game_configs: | |
name: Game Config Testbeds | |
needs: build | |
uses: ./.github/workflows/TEST_GameConfigs.yml | |
# Run testbeds in schemas module | |
testbed_schema: | |
name: Schema base class Testbed | |
needs: build | |
uses: ./.github/workflows/TEST_Schema.yml | |
testbed_game_schemas: | |
name: Game Schema Testbeds | |
needs: build | |
uses: ./.github/workflows/TEST_GameSchemas.yml | |
# Run testbeds in utils module | |
testbed_fileio: | |
name: FileIO Testbed | |
needs: build | |
uses: ./.github/workflows/TEST_FileIO.yml | |
testbed_semver: | |
name: SemanticVersion Testbed | |
needs: build | |
uses: ./.github/workflows/TEST_SemanticVersion.yml |