Add .NET build and test workflow with artifact

This commit is contained in:
TwojeImię NazwiskoJulia
2025-11-20 00:28:00 +01:00
parent 597df76fbf
commit a31f95c50b

View File

@@ -12,14 +12,18 @@ jobs:
- run: dotnet restore - run: dotnet restore
- run: dotnet build - run: dotnet build
- run: dotnet test - run: dotnet test
- run: dotnet publish -o app -r linux-x64 --self-contained true /p:PublishSingleFile=true,AssemblyName=app - run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app
- run: tar cf app.tar app/ - run: tar cf app.tar app/
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: app.tar
path: app.tar
test: test:
needs: build
steps: steps:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
with: with:
name: app.tar name: app.tar
- run: tar xf app.tar/app.tar - run: tar xf app.tar
- run: ./app/app - run: ./app/app