Skip to content

Merge pull request #9 from ConnerWill/humidity-too-high #37

Merge pull request #9 from ConnerWill/humidity-too-high

Merge pull request #9 from ConnerWill/humidity-too-high #37

Workflow file for this run

name: Python Black
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
# Install dependencies
- name: Install Black
run: pip install black
# Run Black
- name: Run Black
run: black --check ./grafana/sensor_data_collector/fetch_data.py