Skip to content

Fix warnings

Fix warnings #595

Workflow file for this run

name: .NET Core
on:
push:
branches:
- master
- release/**
pull_request:
branches:
- master
- release/**
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release src/UAlbion/UAlbion.csproj
- name: Test with dotnet
run: dotnet test ./src/ualbion.ci.sln --configuration Release