This repository was archived by the owner on Jan 11, 2026. It is now read-only.
Merge pull request #1 from R-R0S/update #2
This file contains hidden or 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: 9.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 |