ci: github action to push md5hash worker to staging #2
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: Run security checks on PR | |
on: | |
pull_request: | |
branches: | |
- development | |
- hotfix | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
jobs: | |
checks: | |
if: github.event.pull_request.draft == false | |
name: Run security checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Lint with Ruff | |
run: | | |
pip install ruff | |
ruff --output-format=github ./src/ | |
continue-on-error: false |