mirror of
				https://github.com/dndx/phantun.git
				synced 2025-11-04 03:45:35 +08:00 
			
		
		
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			338 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			338 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Rust
 | 
						|
 | 
						|
on: [push, pull_request]
 | 
						|
 | 
						|
env:
 | 
						|
  CARGO_TERM_COLOR: always
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v5
 | 
						|
    - uses: actions-rs/toolchain@v1
 | 
						|
      with:
 | 
						|
        toolchain: stable
 | 
						|
    - name: Run lint
 | 
						|
      run: cargo clippy --verbose
 | 
						|
    - name: Build
 | 
						|
      run: cargo build --verbose
 |