Skip to content

3d model

3d model #9

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