From d70fb5126e79d6951ab97cd79f80941baf351c58 Mon Sep 17 00:00:00 2001 From: mayur56547-cyber Date: Mon, 17 Nov 2025 20:51:40 +0530 Subject: [PATCH 1/2] Mayur Thanks Meri game khel me kailiye --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df56029..b046262 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 2D-platformer-Game-Unity +-platformer-Game-Unity 2D Tilemap Platformer Unity Create your own 2D platformer game with ease using this Unity project template. This repository provides a foundation for building classic side-scrolling platformers with Unity's powerful 2D features. From 84f211a3960dac5f7e3506c2cf1b4c2ebe5a029d Mon Sep 17 00:00:00 2001 From: mayur56547-cyber Date: Mon, 17 Nov 2025 20:53:18 +0530 Subject: [PATCH 2/2] Create dotnet.yml Thanks bro --- .github/workflows/dotnet.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..217f7cb --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,28 @@ +# This workflow will build a .NET project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net + +name: .NET + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal