Create SECURITY.md #166
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_tests | |
on: | |
- pull_request | |
jobs: | |
linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Download files | |
uses: actions/checkout@v3 | |
- name: Install pytest | |
run: python -m pip install pytest==6.2.2 | |
- name: Install python dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Install QA framework | |
run: python setup.py install --user | |
- name: Run unit tests | |
run: python -m pytest tests/ --tb=short | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- name: Download files | |
uses: actions/checkout@v3 | |
- name: Install pytest | |
run: python -m pip install pytest==6.2.2 | |
- name: Install python dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Install QA framework | |
run: python setup.py install --user | |
- name: Run unit tests | |
run: python -m pytest tests/ --tb=short |