feat: use secure websocket connection #123
Workflow file for this run
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: Game Service Build | |
on: | |
push: | |
branches: [main] | |
paths: | |
- src/game-service/Game.Application/** | |
pull_request: | |
branches: [main] | |
paths: | |
- src/game-service/Game.Application/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "5.0.x" | |
- name: Game Application Build | |
run: dotnet build src/game-service/Game.Application -c Release | |
- name: Game Physics Tests Build | |
run: dotnet build src/game-service/Game.PhysicsTests -c Release | |
- name: Game Unit Tests | |
run: dotnet build src/game-service/Game.UnitTests -c Release |