42 lines
		
	
	
		
			763 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			763 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| name: "Tests"
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     branches:
 | |
|       - main
 | |
|     paths:
 | |
|       - "src/**"
 | |
| 
 | |
| jobs:
 | |
|   cargo_test:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v3
 | |
| 
 | |
|       - uses: actions-rs/toolchain@v1
 | |
|         with:
 | |
|           toolchain: stable
 | |
| 
 | |
|       - uses: actions-rs/cargo@v1
 | |
|         with:
 | |
|           command: build
 | |
|           args: --release --all-features
 | |
|       - run: cargo test
 | |
|   cargo_clippy:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v2
 | |
| 
 | |
|       - uses: actions-rs/toolchain@v1
 | |
|         with:
 | |
|           toolchain: stable
 | |
| 
 | |
|       - uses: actions-rs/cargo@v1
 | |
|         with:
 | |
|           command: build
 | |
|           args: --release --all-features
 | |
|       - run: cargo clippy
 | 
