Merge pull request #194 from dshafranskiy-r7/snyk-and-codeowners #623
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit testing | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Run Unit tests | |
run: | | |
pip install . | |
pip install pytest | |
pip install -r requirements.txt | |
cd unit_test | |
pytest test_validate_workflow.py | |
pytest test_validate_plugin/ |