Bump cookiecutter template to 7c3e75 #619
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: Linting | |
| on: | |
| push: | |
| branches: ["main"] | |
| tags: ["**"] | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: | |
| env: | |
| PIP_DISABLE_PIP_VERSION_CHECK: on | |
| PIP_NO_CLEAN: on | |
| PIP_NO_INPUT: on | |
| PIP_PREFER_BINARY: on | |
| PY_COLORS: "1" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Cache requirements | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-requirements | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ env.cache-name }}-${{ hashFiles('requirements.txt') }} | |
| restore-keys: | | |
| ${{ env.cache-name }}- | |
| - name: Cache environment | |
| uses: actions/cache@v4 | |
| env: | |
| cache-name: cache-environment | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ env.cache-name }}-${{ hashFiles('*.lock') }} | |
| restore-keys: | | |
| ${{ env.cache-name }}- | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.11 | |
| - name: Install requirements | |
| run: make install | |
| - name: Run linters | |
| run: make lint |