This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
Sound the shofar on a IReflection call from content #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: SS14.Launcher.Tests | |
run: dotnet test SS14.Launcher.Tests/SS14.Launcher.Tests.csproj -v n | |
- name: Test Hidesey | |
run: dotnet test Marsey.Tests/Marsey.Tests.csproj -v n |