mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
move version checks out into own check
This commit is contained in:
parent
6bc3e3ccbb
commit
3da5767e02
2
.github/workflows/qc_checks.yaml
vendored
2
.github/workflows/qc_checks.yaml
vendored
@ -44,9 +44,7 @@ jobs:
|
|||||||
|
|
||||||
pep_style:
|
pep_style:
|
||||||
name: PEP style (python)
|
name: PEP style (python)
|
||||||
needs: check_version
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: always()
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
21
.github/workflows/version.yml
vendored
Normal file
21
.github/workflows/version.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Checks version number
|
||||||
|
name: version number
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches-ignore:
|
||||||
|
- l10*
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
check_version:
|
||||||
|
name: version number
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Check version number
|
||||||
|
run: |
|
||||||
|
python3 ci/check_version_number.py --branch ${{ github.base_ref }}
|
Loading…
Reference in New Issue
Block a user