From 64957334de935d5974edfaad5838dfa3a45eff35 Mon Sep 17 00:00:00 2001 From: Minimata Date: Mon, 26 Jan 2026 08:29:43 +0100 Subject: [PATCH] trying to fix Export --- .gitea/workflows/main.yaml | 14 ++++++++-- Movement tests.csproj | 12 +------- tests/ExampleTest.cs | 56 +++++++++++++++++++------------------- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 51b2f677..73472cf7 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -92,9 +92,19 @@ jobs: apt update && apt -y install curl zip nodejs - name: Checkout - uses: https://git.game-dev.space/minimata/checkout-with-lfs.git@main + uses: actions/checkout@v6 with: - checkout-version: 3 + lfs: false + persist-credentials: true + + - name: Checkout LFS + run: | + git lfs install --local + AUTH=$(git config http.${{ gitea.server_url }}/.extraheader) + AUTH_FILE=$(git config includeif.gitdir:/workspace/${{ gitea.repository }}/.git.path) + git config -f $AUTH_FILE --unset http.${{ gitea.server_url }}/.extraheader + git config -f $AUTH_FILE http.${{ gitea.server_url }}/${{ gitea.repository }}.git/info/lfs/objects/batch.extraheader "$AUTH" + git lfs pull - name: Import resources and build solution run: | diff --git a/Movement tests.csproj b/Movement tests.csproj index 717189c6..e6ba5da8 100644 --- a/Movement tests.csproj +++ b/Movement tests.csproj @@ -1,6 +1,6 @@ - net8.0 + net9.0 true Movementtests @@ -129,14 +129,4 @@ - - - - - - - none - runtime; build; native; contentfiles; analyzers; buildtransitive - - \ No newline at end of file diff --git a/tests/ExampleTest.cs b/tests/ExampleTest.cs index 527ea6e7..3f7b419f 100644 --- a/tests/ExampleTest.cs +++ b/tests/ExampleTest.cs @@ -1,28 +1,28 @@ -namespace Movementtests.tests; - -using GdUnit4; -using static GdUnit4.Assertions; - -[TestSuite] -public class ExampleTest -{ - [Before] - public void Setup() { - // Setup suite-level shared resources, expensive setup - } - - [After] - public void Cleanup() { - // Cleanup suite-level shared resources, expensive setup - } - - [TestCase] - public void StringToLower() { - AssertString("AbcD".ToLower()).IsEqual("abcd"); - } - - [TestCase] - public void StringToUpper() { - AssertString("AbcD".ToUpper()).IsEqual("ABCD"); - } -} \ No newline at end of file +// namespace Movementtests.tests; +// +// using GdUnit4; +// using static GdUnit4.Assertions; +// +// [TestSuite] +// public class ExampleTest +// { +// [Before] +// public void Setup() { +// // Setup suite-level shared resources, expensive setup +// } +// +// [After] +// public void Cleanup() { +// // Cleanup suite-level shared resources, expensive setup +// } +// +// [TestCase] +// public void StringToLower() { +// AssertString("AbcD".ToLower()).IsEqual("abcd"); +// } +// +// [TestCase] +// public void StringToUpper() { +// AssertString("AbcD".ToUpper()).IsEqual("ABCD"); +// } +// } \ No newline at end of file