mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-03 05:14:22 +01:00
a90da4dfaf
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
20 lines
378 B
YAML
20 lines
378 B
YAML
name: Static checks
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
static-checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Analysing the code with ruff
|
|
run: |
|
|
pip install -r test-requirements.txt
|
|
ruff format --check
|