Skip to content

New Crowdin updates (#26) #571

New Crowdin updates (#26)

New Crowdin updates (#26) #571

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Dependencies
run: python -m pip install ruff black
- name: Run linter
run: |
ruff . --exit-zero
black .
- name: Commit and Push
continue-on-error: true
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "format: linting"
git push