feat: preliminary imap_mail integration closes issue #3202 #10960
This file contains hidden or 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 Check | |
| on: | |
| push: | |
| branches: [ "master", "qa" ] | |
| paths-ignore: | |
| - "docs/reference/**" | |
| - "docs/**/*.rst" | |
| - "LICENSE" | |
| pull_request: | |
| branches: [ "master", "qa" ] | |
| paths-ignore: | |
| - "docs/reference/**" | |
| - "docs/**/*.rst" | |
| - "LICENSE" | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Python environment and install dependencies | |
| uses: ./.github/actions/camel_install | |
| with: | |
| python-version: "3.10" | |
| - name: Run pre-commit | |
| run: | | |
| source .venv/bin/activate | |
| pre-commit run --all-files | |
| shell: bash |