This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
Fix forecast updates by using SingleCoordinatorWeatherEntity #25
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: "Lint" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
ruff: | |
name: "Ruff" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout the repository" | |
uses: "actions/checkout@v3.5.2" | |
- name: "Set up Python" | |
uses: actions/setup-python@v4.6.1 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: "Install requirements" | |
run: python3 -m pip install -r requirements.txt | |
- name: "Run" | |
run: python3 -m ruff check . |