parent
da671aae6f
commit
98c02c8d3c
@ -2,8 +2,9 @@ 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
|
6
.gitea/workflows/main.c
Normal file
6
.gitea/workflows/main.c
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
printf("Halo, Welt!");
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user