Skip to content

Remove warning for rhel8 and find correct python #10

Remove warning for rhel8 and find correct python

Remove warning for rhel8 and find correct python #10

Workflow file for this run

name: Style
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install -U pip
pip install black ruff
pip install .
- name: Run black
run: |
black --check .
- name: Run ruff
run: |
ruff komodoenv tests