Skip to content

change names

change names #2

Workflow file for this run

---
# desc: workflow dedicated to all the pre-commit verifications (lint)
name: pre-commit
on:
- push
- pull_request_target
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected]
...