Update configuration.md for homeassistant, adding ca_certs parameter #4
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
# CI for code style and application tests | |
name: test-code | |
on: [push, pull_request] | |
jobs: | |
lint-python-code: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: weibullguy/[email protected] | |
with: | |
python-root-list: "moonraker scripts" | |
virtual-env: "python-lint-plus" | |
python-version: "3.10" | |
use-flake8: true | |
flake8-version: "==6.1.0" | |
use-mypy: true | |
mypy-version: "==1.5.1" | |
extra-flake8-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=88 --max-doc-length=88" | |
extra-mypy-options: "--ignore-missing-imports --follow-imports=silent" |