websocket close後に送信しない #47
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: WSNet2 dotnet ci | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/wsnet2-dotnet.yml' | |
- 'wsnet2-dotnet/**' | |
- 'wsnet2-unity/**' | |
jobs: | |
dotnet: | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
working-directory: wsnet2-dotnet | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "6.x" | |
- name: dotnet build | |
run: dotnet build WSNet2.sln | |
- name: dotnet test | |
run: dotnet test WSNet2.sln |