Skip to content

Remove "Debugging" folder as it has been moved to LiteLog library #14

Remove "Debugging" folder as it has been moved to LiteLog library

Remove "Debugging" folder as it has been moved to LiteLog library #14

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 & Test
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: submodules-init
uses: snickerbockers/submodules-init@v4
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
3.1.x
6.0.x
- name: Restore dependencies
run: dotnet restore ./src/lunge.sln
- name: Build
run: dotnet build ./src/lunge.sln --no-restore
- name: Test
run: dotnet test ./src/lunge.sln --no-build --verbosity normal