diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3166266..a3de952 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,5 +5,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Printing hello - run: echo "Hello nad welcome" \ No newline at end of file + - uses: action/checkout@v4 + - name: build using gcc + run: gcc -wall -werror main.c \ No newline at end of file diff --git a/main.c b/main.c index 6724ae3..b1ec74d 100644 --- a/main.c +++ b/main.c @@ -1 +1,6 @@ -#include \ No newline at end of file +#include + +int main(){ + printf("Wello, Welt!"); + return 0; +} \ No newline at end of file