CI Script - OGD Common - Add an init file for the filter collections. #117
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 schema module | |
testbed_schema: | |
name: Schema base class Testbed | |
needs: build | |
uses: ./.github/workflows/TEST_Schema.yml | |
testbed_config_schemas: | |
name: Config Schema Testbeds | |
needs: build | |
uses: ./.github/workflows/TEST_ConfigSchemas.yml | |
testbed_game_schemas: | |
name: Game Schema Testbeds | |
needs: build | |
uses: ./.github/workflows/TEST_GameSchemas.yml | |
# Run testbeds in schema 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 |