aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:37:55 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2021-06-04 01:37:55 +0530
commitaa019aae4f3c53b0bdd65e60b9dfbd55ce627060 (patch)
treed55e457d9c77a6e898324f97998afc6d7f61472c /.github
parente7634cb0f7d7bf021fd518e64d472d8b9929086c (diff)
add action for flask tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/Flask-Tests.yaml33
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/Flask-Tests.yaml b/.github/workflows/Flask-Tests.yaml
new file mode 100644
index 0000000..1da7fd6
--- /dev/null
+++ b/.github/workflows/Flask-Tests.yaml
@@ -0,0 +1,33 @@
+name: Flask Tests
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ strategy:
+ max-parallel: 4
+ matrix:
+ python-version: [3.7, 3.8, 3.9]
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v1
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install Dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install pyenv
+ pipenv install --dev
+
+ - name: Run Tests
+ run: |
+ pipenv run pytest \ No newline at end of file