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