2
0
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:
Matthias
2021-12-02 12:28:10 +01:00
parent 413968a979
commit 2c2825abf7

21
.github/workflows/pr_checks.yaml vendored Normal file
View 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 }}