Skip to content

Merge pull request #47 from Ge0rg3/dev/smt5541/pull_request_template #27

Merge pull request #47 from Ge0rg3/dev/smt5541/pull_request_template

Merge pull request #47 from Ge0rg3/dev/smt5541/pull_request_template #27

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Flask-Parameter-Validation Unit Tests
on:
push:
branches: [ "master", "github-ci" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
cd flask_parameter_validation/test
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with Pytest
run: |
cd flask_parameter_validation
pytest