Ass3
Gitea Actions Demo / Compile (push) Failing after 0s Details

This commit is contained in:
Charadon 2023-11-08 21:32:02 -05:00
parent a02828bc8b
commit 3828fc0fb1
2 changed files with 10 additions and 2 deletions

View File

@ -3,7 +3,9 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
Compile:
runs-on: smartos-17.4.0
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- name: Check out repository code
uses: actions/checkout@v3
- run: gcc hello.c -o hello

6
hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello!");
return(0);
}