Skip to content

Fix/build warnings 2024 09 15 #300

Fix/build warnings 2024 09 15

Fix/build warnings 2024 09 15 #300

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Clone repo and submodules
- uses: actions/checkout@v4
with:
submodules: true
# Install .NET
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
# For caching purposes, restore dependencies in a dedicated step
- name: Restore dependencies
run: dotnet restore
# Build
- name: Build
run: dotnet build --no-restore