Merge pull request #62 from Ueva/Ueva-patch-1 #193
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: PyTest | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Run Python Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set-Up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Package and Dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel pytest | |
pip install -e . | |
- name: Test with PyTest | |
run: pytest |