We want to add possibility to set atlas texture size with static meth… #166
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: Core 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.Core.DesktopGL.sln | |
- name: Build | |
run: dotnet build ./cocos2d-mono.DesktopGL/cocos2d-mono.Core.DesktopGL.sln --no-restore | |
- name: Test | |
run: dotnet test ./cocos2d-mono.DesktopGL/cocos2d-mono.Core.DesktopGL.sln --no-build --verbosity normal |