You've already forked comprehensive-rust
							
							
				mirror of
				https://github.com/google/comprehensive-rust.git
				synced 2025-10-31 08:37:45 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Lint
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
| 
 | |
| env:
 | |
|   CARGO_TERM_COLOR: always
 | |
| 
 | |
| jobs:
 | |
|   clippy:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: Setup Rust cache
 | |
|         uses: ./.github/workflows/setup-rust-cache
 | |
| 
 | |
|       - name: Clippy
 | |
|         run: cargo clippy -- -Dwarnings
 | |
| 
 | |
|   format:
 | |
|     runs-on: ubuntu-latest
 | |
|     env:
 | |
|       NIGHTLY_VERSION: nightly-2025-09-01
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: Install formatting dependencies
 | |
|         run: |
 | |
|           sudo apt update
 | |
|           sudo apt install gettext yapf3
 | |
| 
 | |
|       - name: Install pinned nightly for rustfmt
 | |
|         run: |
 | |
|           rustup toolchain install --profile minimal "$NIGHTLY_VERSION"
 | |
|           rustup component add rustfmt --toolchain "$NIGHTLY_VERSION"
 | |
| 
 | |
|       - name: Check formatting
 | |
|         uses: dprint/check@v2.3
 | |
| 
 | |
|   typos:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
| 
 | |
|       - name: Check for typos
 | |
|         uses: crate-ci/typos@v1.35.7
 | |
|         with:
 | |
|           config: ./.github/typos.toml
 |