podman-compose/.github/workflows/static-checks.yml

20 lines
378 B
YAML
Raw Normal View History

name: Static checks
2022-02-25 19:39:10 +01:00
2022-02-25 19:50:52 +01:00
on:
- push
- pull_request
2022-02-25 19:39:10 +01:00
jobs:
static-checks:
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@v5
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