mirror of
				https://github.com/NotAShelf/microfetch.git
				synced 2025-11-04 15:42:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			298 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Rust
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ "main" ]
 | 
						|
  pull_request:
 | 
						|
    branches: [ "main" ]
 | 
						|
 | 
						|
env:
 | 
						|
  CARGO_TERM_COLOR: always
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - name: "Checkout"
 | 
						|
      uses: actions/checkout@v4
 | 
						|
    - name: "Build with Cargo"
 | 
						|
      run: cargo build --verbose
 |