Skip to content

Update app_WindowsForm #62

Update app_WindowsForm

Update app_WindowsForm #62

name: DotNET8 Build Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-dotnet8-app1:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app_cs/ConsoleAppCalculeteKvadro
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
build-dotnet8-app2:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app_cs/MiniTestConsoleGitHubApp
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal