Merge pull request #650 from NebraLtd/dependabot/pip/certifi-2023.7.22 #614
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: Python Linting | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install apt dependencies | |
run: sudo apt-get update && sudo apt-get install libdbus-1-dev libdbus-glib-1-dev python3-dev | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.4.2 | |
- name: Install dependencies | |
run: | | |
poetry install --with dev | |
- name: Lint with ruff | |
run: | | |
poetry run ruff check hw_diag |