Skip to content

update ci

update ci #6

Workflow file for this run

---
# desc: workflow dedicated to all the pre-commit verifications (lint)
name: lint
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]
...