Merge pull request #218 from mccalluc/remove-invalid-frequency-option #17
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: Python 🐍 | |
on: [push, pull_request] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Build Clima | |
run: |- | |
pip install pipenv | |
pipenv install --dev | |
- name: Test Clima | |
run: |- | |
pipenv run python -m pytest | |
- name: Run Black | |
# TODO: Add to dev dependencies: Adding it right now | |
# bumps other dependencies and the application won't run. | |
run: |- | |
pip install black | |
black . --check |