aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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