This commit is contained in:
@@ -1,8 +1,11 @@
|
|||||||
name: First CI
|
name: First CI
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Printing hello
|
- uses: actions/checkout@v4
|
||||||
run: echo "Hello, "
|
|
||||||
|
- name: build using gcc
|
||||||
|
run: gcc -Wall -Werror main.c
|
||||||
|
|||||||
7
.gitea/workflows/main.c
Normal file
7
.gitea/workflows/main.c
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
printf("Halo, Welt!");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user