fix python version

This commit is contained in:
Matthias 2021-12-02 12:32:20 +01:00
parent 62694b8dae
commit dd91329ed7
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -11,10 +11,10 @@ on:
branches-ignore:
- l10*
inputs:
python_version:
description: “Python version”
default: 3.7
# inputs:
# python_version:
# description: “Python version”
# default: 3.7
jobs:
@ -36,10 +36,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{inputs.python_version}}
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: ${{inputs.python_version}}
python-version: 3.7
- name: Install deps
run: |
pip install flake8==3.8.3