Compare commits

..

No commits in common. "459e29b97da0a0a139b2580412984f4777344125" and "7670db89c09d06d3a43854893e7785c4990a541c" have entirely different histories.

2 changed files with 12 additions and 8 deletions

View File

@ -6,12 +6,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3 - name: build using gcc
run: gcc -Wall -Werror main.c -o program
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with: with:
dotnet-version: '8.0.x' name: program
- run: dotnet restore path: program
- run: dotnet build
test:
steps:
- name: trying to run
run: dotnet run

6
main.c Normal file
View File

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