Skip to content

Commit 5d35239

Browse files
authored
Merge pull request #10 from pritam001/pritam001-patch-2
Create pythonpackage.yml
2 parents 6fa5113 + 0b141c5 commit 5d35239

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ An "optionally opinionated and structured" flask boilerplate microservice for id
99

1010
Tools
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/)

test/test_app.py

Whitespace-only changes.

0 commit comments

Comments
 (0)