podman-compose/.github/workflows/pylint.yml

20 lines
367 B
YAML
Raw Normal View History

2022-02-25 19:39:10 +01:00
name: Pylint
2022-02-25 19:50:52 +01:00
on:
- push
- pull_request
2022-02-25 19:39:10 +01:00
jobs:
lint-ruff:
2022-02-25 19:39:10 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
2022-02-25 19:39:10 +01:00
with:
python-version: "3.11"
- name: Analysing the code with ruff
2022-02-25 19:39:10 +01:00
run: |
pip install -r test-requirements.txt
ruff format --check