use env for python version

This commit is contained in:
Matthias 2021-12-02 12:35:08 +01:00
parent dd91329ed7
commit 996554541c
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -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