Skip to content

Polish lint and styling actions #16

Polish lint and styling actions

Polish lint and styling actions #16

Workflow file for this run

name: Check code
on:
pull_request:
branches: [main]
permissions:
contents: write
pull-requests: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
name: pre-commit-ci-lite
if: always()
with:
msg: apply code formatting
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}