mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-13 02:00:47 +01:00
a5c354d60b
For now pylint checks are disabled. Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
23 lines
470 B
YAML
23 lines
470 B
YAML
name: Pylint
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint-ruff:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.11"]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
name: Set up Python ${{ matrix.python-version }}
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Analysing the code with ruff
|
|
run: |
|
|
pip install -r test-requirements.txt
|
|
ruff format --check
|