Merge pull request #1 from vTuanpham/feat/Dialogs_config #28
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: | |
push: | |
branches: | |
- main | |
- dev | |
- feat/* | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 # Specify your desired Python version | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
working-directory: ./ | |
- name: Run Unit Tests | |
run: | | |
python -m unittest discover -s tests -p "*_test.py" | |
working-directory: ./ |