mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-08 09:52:07 +01:00
4d6a5a74ac
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
996 B
YAML
41 lines
996 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
# On other branches the `pull_request` trigger will be used
|
|
branches: [current, next]
|
|
|
|
pull_request:
|
|
types: [opened, edited, reopened, synchronize]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install pagefind
|
|
uses: jaxxstorm/action-install-gh-release@v1.12.0
|
|
with:
|
|
repo: cloudcannon/pagefind
|
|
- uses: actions/checkout@v4.1.6
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: pip install -r requirements.txt -r requirements_test.txt
|
|
- name: Register problem matchers
|
|
run: |
|
|
echo "::add-matcher::.github/workflows/matchers/ci-custom.json"
|
|
|
|
- name: Lint
|
|
run: python lint.py
|
|
- name: html-strict
|
|
run: make html-strict
|