mirror of
				https://github.com/amithkoujalgi/ollama4j.git
				synced 2025-10-31 08:30:41 +01:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 5c76ab69a5
			
		
	
	5c76ab69a5
	
	
	
		
			
			Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			608 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			608 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Pre-commit Check on PR
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     types: [opened, reopened, synchronize]
 | |
|     branches:
 | |
|       - main
 | |
| 
 | |
| #on:
 | |
| #  pull_request:
 | |
| #    branches: [ main ]
 | |
| #  push:
 | |
| #    branches: [ main ]
 | |
| 
 | |
| jobs:
 | |
|   run:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
|       - uses: actions/setup-python@v6
 | |
|         with:
 | |
|           python-version: '3.x'
 | |
|       - name: Install pre-commit
 | |
|         run: |
 | |
|           python -m pip install --upgrade pip
 | |
|           pip install pre-commit
 | |
|       # - name: Run pre-commit
 | |
|       #   run: |
 | |
|       #     pre-commit run --all-files --show-diff-on-failure
 | |
| 
 |