Skip to content

Actions update

Actions update #6

Workflow file for this run

name: Build
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: '7.x.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release