This repository was archived by the owner on Sep 25, 2025. It is now read-only.
Dcv 2948 fix search on devdocs site #1
Workflow file for this run
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: Lint | |
| on: [pull_request] | |
| jobs: | |
| Lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| container: datacoves/ci-multiarch:latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Lint | |
| run: flake8 | |
| shell: bash |