File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Python package
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+ strategy :
10+ matrix :
11+ python-version : [3.8]
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+ - name : Set up Python ${{ matrix.python-version }}
16+ uses : actions/setup-python@v1
17+ with :
18+ python-version : ${{ matrix.python-version }}
19+ - name : Install pip
20+ run : |
21+ python -m pip install --upgrade pip
22+ - name : Setup project
23+ run : |
24+ make setup
25+ - name : Lint
26+ run : |
27+ pip install flake8
28+ make lint
29+
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ An "optionally opinionated and structured" flask boilerplate microservice for id
99
1010Tools
1111------------------------------------------------------------------------------
12- [ ![ Min Python Version 3.6 +] ( https://img.shields.io/badge/python-3.6 +-3776AB.svg )] ( https://www.python.org/download/releases/3.6 .0/ )
12+ [ ![ Min Python Version 3.8 +] ( https://img.shields.io/badge/python-3.8 +-3776AB.svg )] ( https://www.python.org/download/releases/3.8 .0/ )
1313[ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
1414[ ![ Static Analysis: flake8] ( https://img.shields.io/badge/static%20analysis-flake8-white.svg )] ( https://www.python.org/dev/peps/pep-0008/ )
1515[ ![ Static Typing: mypy] ( https://img.shields.io/badge/static%20typing-mypy-blue.svg )] ( https://www.python.org/dev/peps/pep-0008/ )
You can’t perform that action at this time.
0 commit comments