2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-11 14:34:44 -04:00
ChrisDill 1018def995 Update dotnetcore.yml
Learning about continuous integration.
- Testing build using multiple versions of .NET Core.
2020-01-29 19:53:13 +00:00

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