Merge pull request #48 from Deeptechia/main #76
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: Test Geppetto | |
on: [ push, pull_request] | |
jobs: | |
Test-Python3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Run Python | |
run: python --version | |
- name: install requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Run Test | |
run: | | |
python -m unittest discover tests -v | |