1414name : Miscellaneous platform tests
1515
1616on :
17+ workflow_dispatch :
1718 push :
1819 branches :
1920 - develop
2021 - releases/**
2122 pull_request :
2223 branches :
23- - main
24- - develop
25- - releases/**
26-
24+ - main
25+ - develop
26+ - releases/**
27+ concurrency :
28+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
29+ cancel-in-progress : true
2730jobs :
2831 # The job named build
2932 build :
@@ -32,10 +35,10 @@ jobs:
3235 strategy :
3336 fail-fast : false
3437 matrix :
35- # Each entry in the os and python-version matrix will be run
38+ # Each entry in the os and python-version matrix will be run
3639 os : [ ubuntu-20.04 ]
3740 python-version : [ 3.8 ]
38-
41+
3942 # Run-on determines the operating system available to run on
4043 # - At the current time there is only ubuntu machine 20.04 available
4144 # - This uses the matrix os from the strategy above
@@ -60,33 +63,33 @@ jobs:
6063 os : ${{ matrix.os }}
6164 test_path : volttrontesting/platform/web/test_certs.py
6265 test_output_suffix : misc
63-
66+
6467 - name : Run core agent test on ${{ matrix.python-version }}, ${{ matrix.os }}
65- uses : volttron/volttron-build-action@v5
68+ uses : volttron/volttron-build-action@v6
6669 with :
6770 python_version : ${{ matrix.python-version }}
6871 os : ${{ matrix.os }}
6972 test_path : volttrontesting/platform/test_core_agent.py
7073 test_output_suffix : misc
7174
7275 - name : Run packaging test on ${{ matrix.python-version }}, ${{ matrix.os }}
73- uses : volttron/volttron-build-action@v5
76+ uses : volttron/volttron-build-action@v6
7477 with :
7578 python_version : ${{ matrix.python-version }}
7679 os : ${{ matrix.os }}
7780 test_path : volttrontesting/platform/test_packaging.py
7881 test_output_suffix : misc
7982
8083 - name : Run platform init test on ${{ matrix.python-version }}, ${{ matrix.os }}
81- uses : volttron/volttron-build-action@v5
84+ uses : volttron/volttron-build-action@v6
8285 with :
8386 python_version : ${{ matrix.python-version }}
8487 os : ${{ matrix.os }}
8588 test_path : volttrontesting/platform/test_platform_init.py
8689 test_output_suffix : misc
87-
90+
8891 - name : Run sqlite3 test on ${{ matrix.python-version }}, ${{ matrix.os }}
89- uses : volttron/volttron-build-action@v5
92+ uses : volttron/volttron-build-action@v6
9093 with :
9194 python_version : ${{ matrix.python-version }}
9295 os : ${{ matrix.os }}
0 commit comments