-aInit new .net9.0 project
All checks were successful
First CI / test (push) Successful in 57s
First CI / build (push) Successful in 1m0s

This commit is contained in:
Uladzislau Kamisarau
2025-11-21 13:36:42 +01:00
parent 3f1e7a4717
commit c70e008712
9 changed files with 193 additions and 14 deletions

View File

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