From 65f66af1794387ff4f2e86eaf6e5017e51f9d746 Mon Sep 17 00:00:00 2001 From: Sean Date: Fri, 14 Nov 2025 15:54:57 -0500 Subject: [PATCH] push ci file --- .gitea/workflows/arm64-ci.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/arm64-ci.yaml diff --git a/.gitea/workflows/arm64-ci.yaml b/.gitea/workflows/arm64-ci.yaml new file mode 100644 index 0000000..99704f3 --- /dev/null +++ b/.gitea/workflows/arm64-ci.yaml @@ -0,0 +1,27 @@ +name: Build .NET Project + +on: + push: + branches: + - main # Trigger on pushes to the main branch + +jobs: + build: + runs-on: arm64 # Use the ARM64 runner + steps: + - name: Checkout code + uses: actions/checkout@v4 # Action to checkout your repository + +# - name: Setup .NET SDK +# uses: actions/setup-dotnet@v4 # Action to install a specific .NET SDK version +# with: +# dotnet-version: '8.0.x' # Specify the desired .NET SDK version + + - name: Restore dependencies + run: dotnet restore # Restore NuGet packages + + - name: Build project + run: dotnet build --configuration Debug --no-restore # Build the project in Debug configuration + +# - name: Run tests (optional) +# run: dotnet test --no-build # Run unit tests if available \ No newline at end of file