Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: pre-commit
on: [push, pull_request]
permissions:
contents: write
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- run: pip install pre-commit
- name: Run pre-commit checks
run: pre-commit run
- name: Push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add .
git commit -m "style: run pre-commit"
git push