Skip to content

Update mods to match QoD v1.0.3 (#15) #32

Update mods to match QoD v1.0.3 (#15)

Update mods to match QoD v1.0.3 (#15) #32

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: .NET
on:
push:
branches: [ "master", "cfg_support"]
pull_request:
branches: [ "master", "cfg_support"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
# - name: Build # we would need to include the (proprietary) dlls :(
# run: dotnet build --no-restore
- name: Format
run: dotnet format --verify-no-changes