Skip to content

Commit

Permalink
f: action wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nanov committed Nov 13, 2024
2 parents 22deda0 + d13247f commit 798a35d
Show file tree
Hide file tree
Showing 5 changed files with 274 additions and 48 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
- uses: taiki-e/create-gh-release-action@v1
with:
# (optional) Path to changelog.
<<<<<<< HEAD
# changelog: CHANGELOG.md
=======
changelog: CHANGELOG.md
>>>>>>> d13247f479d853832f107b1db5963787494deffc
# (required) GitHub token for creating GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -38,7 +42,11 @@ jobs:
with:
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
# Note that glob pattern is not supported yet.
<<<<<<< HEAD
bin: rae-cli
=======
bin: ...
>>>>>>> d13247f479d853832f107b1db5963787494deffc
# (optional) Target triple, default is host triple.
# This is optional but it is recommended that this always be set to
# clarify which target you are building for if macOS is included in
Expand Down
128 changes: 128 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
clap = "4.5.20"
const_format = "0.2.33"
html2text = { version = "0.13.2", features = ["css"] }
inquire = "0.7.5"
reqwest = { version = "0.12.8", features = ["blocking"] }
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@ A rather primitive tool to search and display spanish-spanish translations of wo

## Usage


Search for a word:
```sh
rae-cli [word]
buschar palabras en real Real Academia Española.

Usage: rae-cli <palabra>

Arguments:
<palabra> palabra para buschar

Options:
-h, --help Print help
-V, --version Print version
```

If the word if found information will be displayed
Expand Down
Loading

0 comments on commit 798a35d

Please sign in to comment.