-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (46 loc) · 1.34 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
51
52
53
54
55
56
57
# 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