mirror of
				https://github.com/raylib-cs/raylib-cs
				synced 2025-11-02 05:06:44 -05:00 
			
		
		
		
	Learning about continuous integration. - Testing build using multiple versions of .NET Core.
		
			
				
	
	
		
			23 lines
		
	
	
		
			449 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			449 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: .NET Core
 | 
						|
 | 
						|
on: [push, pull_request]
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        dotnet: [ '2.1', '3.1' ]
 | 
						|
    name: Dotnet ${{ matrix.dotnet }} build
 | 
						|
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v1
 | 
						|
      - name: Setup .NET Core
 | 
						|
        uses: actions/setup-dotnet@v1
 | 
						|
        with:
 | 
						|
          dotnet-version: ${{ matrix.dotnet }}
 | 
						|
      - name: Build with dotnet
 | 
						|
        run: dotnet build --configuration Release
 |