-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.21 KB
/
CI_common.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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