ci: Disable mamba-content-trust and auth tests
#10868
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: Linters | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - feat/* | |
| pull_request: | |
| branches: | |
| - main | |
| - feat/* | |
| merge_group: | |
| types: [checks_requested] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| PRE_COMMIT_USE_MICROMAMBA: 1 | |
| steps: | |
| - name: Disk Space Before Clean Up | |
| run: | | |
| df -h | |
| - name: Free Disk Space (Base Runner) | |
| uses: jlumbroso/free-disk-space@v1.3.1 | |
| with: | |
| tool-cache: false | |
| large-packages: false | |
| docker-images: false | |
| - name: Disk Space After Clean Up | |
| run: | | |
| df -h | |
| - uses: actions/checkout@v6 | |
| - name: Install pre-commit and identify | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-name: linters | |
| create-args: pre-commit identify | |
| - name: Add micromamba to GITHUB_PATH | |
| run: echo "${HOME}/micromamba-bin" >> $GITHUB_PATH | |
| - name: Run all linters | |
| shell: micromamba-shell {0} | |
| run: | | |
| pre-commit run --all-files --verbose --show-diff-on-failure |