From 6a5034b3a2218aee8f03b9de34c208c996fb5fe5 Mon Sep 17 00:00:00 2001 From: Artem Zharkov <72891194+Artem935@users.noreply.github.com> Date: Mon, 25 Nov 2024 11:16:09 +0100 Subject: [PATCH] fifth commit --- .gitea/workflows/test.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index b6a3341..581fe6c 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,8 +1,9 @@ name: First CI on: [push] -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Printing hello - run: echo "Hello, " \ No newline at end of file + jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: build using gcc + run: gcc -Wall -Werror main.c \ No newline at end of file