mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 03:25:42 +00:00
one workflow for PR checks
This commit is contained in:
21
.github/workflows/pr_checks.yaml
vendored
Normal file
21
.github/workflows/pr_checks.yaml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
# Checks for each PR
|
||||
|
||||
name: PR checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches-ignore:
|
||||
- l10*
|
||||
|
||||
jobs:
|
||||
|
||||
check_version:
|
||||
name: check 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 }}
|
Reference in New Issue
Block a user