Skip to content

Commit

Permalink
Merge pull request #73 from jjjermiah/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
jjjermiah committed Feb 3, 2024
2 parents e4df33e + 6b6a2a8 commit 1a0c816
Show file tree
Hide file tree
Showing 11 changed files with 597 additions and 212 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ jobs:
- name: Install package
run: poetry install


- name: Update README code block
run: |
awk '/``` bash NBIAToolkit-Output/ {
print "``` bash NBIAToolkit-Output";
print "> NBIAToolkit --version";
system("NBIAToolkit --version");
f=1;
next
} f && /```/ {
print "```";
f=0;
next
} !f' README.md > temp && mv temp README.md
# This action uses Python Semantic Release v8
# What this action does:
# - Determines the next version number based on the commit history
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ pip install nbiatoolkit

## CLI Usage

### getCollections
# getCollections Output
nbia-toolkit also provides a command line interface (CLI) to query the NBIA database for some queries.
``` bash
❯ NBIAToolkit
``` bash NBIAToolkit-Output
❯ NBIAToolkit --version
_ ______ _______ ______ ____ _ __
/ | / / __ )/ _/ |/_ __/___ ____ / / /__(_) /_
/ |/ / __ |/ // /| | / / / __ \/ __ \/ / //_/ / __/
Expand Down

0 comments on commit 1a0c816

Please sign in to comment.