Skip to content

Readme güncellemeleri #2

Readme güncellemeleri

Readme güncellemeleri #2

Workflow file for this run

name: .NET CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore NuGet Packages
run: dotnet restore
- name: Clean solution
run: dotnet clean
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal