parent
da671aae6f
commit
98c02c8d3c
@ -2,8 +2,9 @@ name: First CI
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
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
|
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