From 1987a0d44640f4c57fc0747d088943b0134ad6f3 Mon Sep 17 00:00:00 2001 From: vladyslav-crunch Date: Fri, 21 Nov 2025 11:01:40 +0100 Subject: [PATCH] Feat: change ci file --- .gitea/workflows/ci.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index dcabf62..82eda18 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,8 +3,15 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - run: dotnet restore + - run: dotnet build + test: steps: - - uses: actions/checkout@v4 - - name: build using gcc - run: gcc -Wall -Werror main.c + - name: trying to run + run: dotnet run \ No newline at end of file