chore(deps): update dependency ruff to ^0.8.0 #633
Workflow file for this run
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: Verify | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Check the Codebase | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.12"] | |
poetry-version: [1.7.1] | |
steps: | |
- uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Poetry ${{ matrix.poetry-version }} | |
uses: abatilo/actions-poetry@e78f54a89cb052fff327414dd9ff010b5d2b4dbd # v3.0.1 | |
with: | |
poetry-version: ${{ matrix.poetry-version }} | |
- run: | | |
poetry install | |
- run: | | |
poetry check | |
poetry run ruff check . | |
- run: | | |
poetry run pytest | |
poetry run coverage xml | |
- uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2.3.4 | |
with: | |
file: coverage.xml | |
validate_hacs: | |
runs-on: ubuntu-latest | |
name: Validate HACS | |
steps: | |
- uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: HACS Validation | |
uses: hacs/action@70694a570839431b5c69ff0eba599a213dc7a43b # main | |
with: | |
category: integration |