Skip to content

Update project configuration and add new files #14

Update project configuration and add new files

Update project configuration and add new files #14

Workflow file for this run

name: python lint
on: [push]
jobs:
community-apps-python-lint:
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v4
- name: set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.1.6
- name: lint with ruff
run: ruff check --output-format=github .