Fixed modules: removed six dependency #1418
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: Additional Checks | |
| # Checks which are not in standardized tools such as custom checks by scripts | |
| # in the source code or small 3rd party checks without large projects behind them. | |
| # Number of disconnected, but simple checks can be combined into one workflow | |
| # (and job) to reduce the number of jobs. | |
| on: | |
| push: | |
| branches: | |
| - grass[0-9]+ | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| additional-checks: | |
| name: Additional checks | |
| runs-on: ubuntu-latest | |
| env: | |
| # renovate: datasource=python-version depName=python | |
| PYTHON_VERSION: "3.14" | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository contents | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 31 | |
| persist-credentials: false | |
| - name: Set up Python | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - run: pip install pre-commit && pre-commit run -a |