Some checks failed
		
		
	
	Validate PR Title / validate (pull_request) Successful in 37s
				
			CI / ci (pull_request) Successful in 1m35s
				
			Release / Test (push) Failing after 1s
				
			Release / Create Release (push) Has been skipped
				
			Release / Print Release (push) Has been skipped
				
			Release / Publish Docker Images (push) Has been skipped
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			435 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			435 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: CI
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    types: [opened, synchronize, reopened]
 | 
						|
    paths-ignore:
 | 
						|
      - "README.md"
 | 
						|
      - "LICENSE.md"
 | 
						|
      - ".gitignore"
 | 
						|
      - ".github/CODEOWNERS"
 | 
						|
      - ".github/renovate.json"
 | 
						|
      - ".github/dependabot.yml"
 | 
						|
 | 
						|
jobs:
 | 
						|
  ci:
 | 
						|
    uses: luketainton/gha-workflows/.github/workflows/ci-docker.yml@main
 | 
						|
    secrets:
 | 
						|
      SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
 | 
						|
      SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
 |