Skip to content

Commit 3980a1e

Browse files
committed
Added Github workflows
1 parent 725588e commit 3980a1e

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: dotnet package
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
dotnet-version: ['3.0', '3.1.x', '5.0.x' ]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
16+
uses: actions/[email protected]
17+
with:
18+
dotnet-version: ${{ matrix.dotnet-version }}
19+
- name: Install dependencies
20+
run: dotnet restore
21+
- name: Build
22+
run: dotnet build --configuration Release --no-restore
23+
- name: Test
24+
run: dotnet test --no-restore --verbosity normal

README.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Global Data
22

3-
- Counties
4-
- Currencies (Fiat)
3+
- Countries
4+
- Currencies (Fiat and Cyrpto)
55
- Banks
6+
7+
8+
## Countries: `Azihub.GlobalData.Base.Country`
9+
.NET built-in Country data also has many missing information such as an ENUM of strings to
10+
get `ISO 3166-2` or `ISO 3166-3`
11+
12+
## Currencies: `Azihub.GlobalData.Base.Currency`
13+
This project aim to solve the missing data within .NET existing globalization, for example,
14+
number of decimal in currency is missing, or another example, the block of currency used for
15+
displaying 100 YEN of Japan.
16+
17+
Also list of Cryptocurrencies combined with Fiat currencies:
18+
- `ICurrency.cs`
19+
- `CurrencyCrypto.cs`
20+
- `CurrencyFiat.cs`
21+
22+
## Banks: `Azihub.GlobalData.Base.Banks`
23+
List of banks by country, the website, IBAN support and variety of information
24+
Also combining list of Central banks
25+
26+
- `Bank.cs`
27+
- `CentralBank.cs`

0 commit comments

Comments
 (0)