Skip to content

Fix all linting issues in care #3576

Fix all linting issues in care

Fix all linting issues in care #3576

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches:
- develop
- staging
merge_group:
jobs:
lint:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Ruff check
uses: ilyvsc/ruff-action@742ee1de75ed9b9a7fd05134f4dcb5610a12f1c1
with:
version: 0.6.7
args: "check"
changed-files: "true"
- name: Ruff format
uses: ilyvsc/ruff-action@742ee1de75ed9b9a7fd05134f4dcb5610a12f1c1
with:
version: 0.6.7
args: "format --check"
changed-files: "true"