diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 80d23fd..4201bca 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,5 +4,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Printing hello - run: echo "Hello, " + - uses: actions/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 new file mode 100644 index 0000000..11af0b7 --- /dev/null +++ b/main.c @@ -0,0 +1,4 @@ +int main() { + printf("Halo, Welt!"); + return 0; +}