File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This workflow will build a .NET10 Desktop project
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+ name : .NET10 Desktop
5+
6+ on :
7+ push :
8+ branches : [ "main" ]
9+ pull_request :
10+ branches : [ "main" ]
11+
12+ jobs :
13+ build :
14+
15+ runs-on : windows-latest
16+
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v4
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Setup .NET
24+ uses : actions/setup-dotnet@v4
25+ with :
26+ dotnet-version : 10.0.x
27+
28+ - name : Restore dependencies
29+ run : dotnet restore
30+
31+ - name : Build
32+ run : dotnet build --no-restore
33+
34+ - name : Test
35+ run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change 11# FinCERT-Client
22
33[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/hpsbfj3qds34i4yb?svg=true )] ( https://ci.appveyor.com/project/diev/fincert-client )
4- [ ![ .NET8 Desktop] ( https://github.com/diev/FinCERT-Client/actions/workflows/dotnet8 -desktop.yml/badge.svg )] ( https://github.com/diev/FinCERT-Client/actions/workflows/dotnet8 -desktop.yml )
4+ [ ![ .NET10 Desktop] ( https://github.com/diev/FinCERT-Client/actions/workflows/dotnet10 -desktop.yml/badge.svg )] ( https://github.com/diev/FinCERT-Client/actions/workflows/dotnet10 -desktop.yml )
55[ ![ GitHub Release] ( https://img.shields.io/github/release/diev/FinCERT-Client.svg )] ( https://github.com/diev/FinCERT-Client/releases/latest )
66
77Получение по API фидов и бюллетеней из FinCERT (АСОИ ФинЦЕРТ) Банка России.
You can’t perform that action at this time.
0 commit comments