Merge pull request #1 from InputUsername/github/actions-support
Add CI builds support
This commit is contained in:
		
						commit
						15e2a86819
					
				| 
						 | 
				
			
			@ -0,0 +1,19 @@
 | 
			
		|||
name: CI builder
 | 
			
		||||
 | 
			
		||||
on: [push, pull_request]
 | 
			
		||||
 | 
			
		||||
env:
 | 
			
		||||
  CARGO_TERM_COLOR: always
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    name: CI builder for listenbrainz-rs
 | 
			
		||||
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
    - uses: actions/checkout@v2
 | 
			
		||||
    - name: Perform build of listenbrainz-rs
 | 
			
		||||
      run: cargo build --verbose
 | 
			
		||||
    - name: Run unit tests for listenbrain-rs
 | 
			
		||||
      run: cargo test --verbose
 | 
			
		||||
		Loading…
	
		Reference in New Issue