From 672038d9d3fb1319cb838e5682f8cd3ed471ea20 Mon Sep 17 00:00:00 2001 From: OpenClaw CI Date: Sun, 7 Jun 2026 20:07:12 +0000 Subject: [PATCH] Fix test project reference, add .gitignore, fix workflow (remove checkout step) --- .forgejo/workflows/build.yml | 7 +------ .gitignore | 12 ++++++++++++ StellarisIdle.Tests/StellarisIdle.Tests.csproj | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 .gitignore diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index f1b167f..150f11c 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -11,9 +11,7 @@ jobs: runs-on: ubuntu-latest container: mcr.microsoft.com/dotnet/sdk:10.0 steps: - - name: Checkout - uses: actions/checkout@v4 - + # No checkout needed — Forgejo Actions auto-clones the repo - name: Restore dependencies run: dotnet restore @@ -29,9 +27,6 @@ jobs: runs-on: ubuntu-latest container: mcr.microsoft.com/dotnet/sdk:10.0 steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Publish Blazor WASM run: dotnet publish -c Release -o /tmp/publish diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..10e44ad --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +# .NET build artifacts +bin/ +obj/ +*.user +*.suo +*.cache +.vs/ +.idea/ + +# OS files +.DS_Store +Thumbs.db diff --git a/StellarisIdle.Tests/StellarisIdle.Tests.csproj b/StellarisIdle.Tests/StellarisIdle.Tests.csproj index 49c01ac..a9cffd7 100644 --- a/StellarisIdle.Tests/StellarisIdle.Tests.csproj +++ b/StellarisIdle.Tests/StellarisIdle.Tests.csproj @@ -19,7 +19,7 @@ - + \ No newline at end of file