Skip to content

Validation main concept was described #24

Validation main concept was described

Validation main concept was described #24

name: Push or Pull request
on:
push:
pull_request:
jobs:
push:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install dotnet 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Install packages
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build