reset more static fields on Init() - leads to create proper tappable … #510
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: DesktopGL | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./cocos2d-mono.DesktopGL/cocos2d-mono.DesktopGL.sln | |
- name: Build | |
run: dotnet build ./cocos2d-mono.DesktopGL/cocos2d-mono.DesktopGL.sln --no-restore | |
- name: Test | |
run: dotnet test ./cocos2d-mono.DesktopGL/cocos2d-mono.DesktopGL.sln --no-build --verbosity normal |