mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-13 02:00:47 +01:00
b65d4a3916
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
20 lines
367 B
YAML
20 lines
367 B
YAML
name: Pylint
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint-ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Analysing the code with ruff
|
|
run: |
|
|
pip install -r test-requirements.txt
|
|
ruff format --check
|