mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Workflow remaster (#2416)
* Workflow remaster (#28) * set default ref * only trigger version number if pullrequest * try skipping just a step * Workflow remaster (#29) * set default ref * only trigger version number if pullrequest * always run style * try skipping just a step * try adding a step so everything continues * Workflow remaster (#30) * set default ref * only trigger version number if pullrequest * always run style * try skipping just a step * try adding a step so everything continues * maybe this does not fail them * skip ahead * do not skip the whole job, just the steps
This commit is contained in:
parent
6690001e81
commit
6bc3e3ccbb
4
.github/workflows/qc_checks.yaml
vendored
4
.github/workflows/qc_checks.yaml
vendored
@ -35,8 +35,12 @@ jobs:
|
|||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Check version number
|
- name: Check version number
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
run: |
|
run: |
|
||||||
python3 ci/check_version_number.py --branch ${{ github.base_ref }}
|
python3 ci/check_version_number.py --branch ${{ github.base_ref }}
|
||||||
|
- name: Finish
|
||||||
|
if: always()
|
||||||
|
run: echo 'done'
|
||||||
|
|
||||||
pep_style:
|
pep_style:
|
||||||
name: PEP style (python)
|
name: PEP style (python)
|
||||||
|
Loading…
Reference in New Issue
Block a user