mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-11-04 04:08:20 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			533 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			533 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
dist: xenial
 | 
						|
 | 
						|
env:
 | 
						|
  global:
 | 
						|
    - HADOLINT_VERSION=1.17.1
 | 
						|
 | 
						|
language: rust
 | 
						|
rust: nightly
 | 
						|
cache: cargo
 | 
						|
 | 
						|
before_install:
 | 
						|
  - sudo curl -L https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-$(uname -s)-$(uname -m) -o /usr/local/bin/hadolint
 | 
						|
  - sudo chmod +rx /usr/local/bin/hadolint
 | 
						|
  - rustup set profile minimal
 | 
						|
 | 
						|
# Nothing to install
 | 
						|
install: true
 | 
						|
script:
 | 
						|
- git ls-files --exclude='Dockerfile*' --ignored | xargs --max-lines=1 hadolint
 | 
						|
- cargo test --features "sqlite"
 | 
						|
- cargo test --features "mysql"
 |