2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00
raylib-cs/.github/workflows/dotnetcore.yml
ChrisDill b87362fd28 Update workflow and README.md ready to merge into master
- Should be able to run workflow manually and pushes will only run it if they are on master.
- Update README.md with new version + note about the nuget package being out of date.
2020-12-27 17:11:21 +00:00

24 lines
513 B
YAML

name: .NET Core
on:
push:
branches: master
pull_request:
branches: master
workflow_dispatch:
jobs:
build:
name: Build on dotnet using ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Build with dotnet
run: dotnet build -c Release