mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
use env for python version
This commit is contained in:
parent
dd91329ed7
commit
996554541c
11
.github/workflows/pr_checks.yaml
vendored
11
.github/workflows/pr_checks.yaml
vendored
@ -11,10 +11,9 @@ on:
|
||||
branches-ignore:
|
||||
- l10*
|
||||
|
||||
# inputs:
|
||||
# python_version:
|
||||
# description: “Python version”
|
||||
# default: 3.7
|
||||
env:
|
||||
python_version: 3.7
|
||||
|
||||
|
||||
jobs:
|
||||
|
||||
@ -36,10 +35,10 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
- name: Set up Python ${{ env.python_version }}
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.7
|
||||
python-version: ${{ env.python_version }}
|
||||
- name: Install deps
|
||||
run: |
|
||||
pip install flake8==3.8.3
|
||||
|
Loading…
Reference in New Issue
Block a user