Skip to content

Update .net version for pipeline #24

Update .net version for pipeline

Update .net version for pipeline #24

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Build with dotnet
run: dotnet build --configuration Release VeldridGen/VeldridGen.csproj
- name: Test with dotnet
run: dotnet test ./VeldridGen.sln --configuration Release