fix: resolved issue 1027 and 1045 and done modification into the db_query file #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-commit | |
on: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: precommit-frappe-${{ github.event_name }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
linter: | |
name: 'precommit' | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- uses: pre-commit/[email protected] |