CI Script - OGD Common - Merge pull request #26 from opengamedata/issue/1-add-defaults-for-schemas
Add Default
function for schemas
#95
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 | |
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 |