mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	add a github action to run cargo-flaky 1000 times
This commit is contained in:
		
							
								
								
									
										15
									
								
								.github/workflows/flaky.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								.github/workflows/flaky.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
name: "Look for flaky tests"
 | 
			
		||||
on:
 | 
			
		||||
  schedule:
 | 
			
		||||
    - cron: "* */12 * * */5" # every friday at 12PM
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v1
 | 
			
		||||
    - name: "install cargo-flaky"
 | 
			
		||||
      run: cargo install cargo-flaky
 | 
			
		||||
    - name: "Run cargo flaky 1000 times"
 | 
			
		||||
      run: cargo flaky -i 1000
 | 
			
		||||
		Reference in New Issue
	
	Block a user