mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-01 20:33:57 +01:00
ed39523342
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
23 lines
546 B
YAML
23 lines
546 B
YAML
name: Static checks
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
static-checks:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker.io/library/python:3.11-bookworm
|
|
# cgroupns needed to address the following error:
|
|
# write /sys/fs/cgroup/cgroup.subtree_control: operation not supported
|
|
options: --privileged --cgroupns=host
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Analysing the code with ruff
|
|
run: |
|
|
set -e
|
|
pip install -r test-requirements.txt
|
|
ruff format --check
|
|
ruff check
|