Skip to content

Issues/vat refactoring #14

Issues/vat refactoring

Issues/vat refactoring #14

name: Build & Test
on:
pull_request:
branches: [ main ]
paths:
- src/Nox.Reference.Abstractions/**
- tests/Nox.Reference.Data.World.Tests/**
- .github/workflows/nox.reference.data.world.ci.yaml
push:
branches: [ main ]
paths:
- src/Nox.Reference.Abstractions/**
- src/Nox.Reference.Data.World/**
- tests/Nox.Reference.Data.World.Tests/**
- .github/workflows/nox.reference.data.world.ci.yaml
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore
run: dotnet restore ./src/Nox.Reference.Data.World/Nox.Reference.Data.World.csproj
- name: Build
run: dotnet build ./src/Nox.Reference.Data.World/Nox.Reference.Data.World.csproj --warnaserror --configuration Release --no-restore
- name: Tests
run: dotnet test ./tests/Nox.Reference.Data.World.Tests/Nox.Reference.Data.World.Tests.csproj --no-restore --verbosity minimal --configuration Release