New version 1.5.10 #49
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
# This workflow checks and tests various things to assure full functionality | |
name: Tests | |
# Controls when the workflow will run | |
on: | |
# This workflow will run whenever code is pushed to the master branch | |
push: | |
branches: [ master ] | |
# Allows running workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install pytest | |
- name: Run pytest | |
run: | | |
cd tests | |
pytest |