diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-08-11 09:28:57 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2025-10-27 10:26:37 +0100 |
| commit | 76e4c5bd5016347dca083b6932e6adf03f398cad (patch) | |
| tree | 816bd3f24e4f4dbc1f87f93bd91a3c91d88c0f44 /.github/workflows/ci.yml | |
| parent | ab60cbfb64b43402e42e7cd823b53b03f651e535 (diff) | |
| download | mihi-76e4c5bd5016347dca083b6932e6adf03f398cad.tar.gz mihi-76e4c5bd5016347dca083b6932e6adf03f398cad.zip | |
Provide initial implementation for word inflection
Word inflection for nouns, adjectives has been added so it can be
initially be used in commands like 'words show'.
Word categories which have no inflections (e.g. adverbs, conjunctions,
et al) are skipped.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2ec6aa..3e4d8b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,12 @@ jobs: rustup default stable - name: Run tests - run: cargo test --verbose + env: + MIHI_DATABASE: test.sqlite3 + run: | + mkdir -p $HOME/.config/mihi + cp testdata/test.sqlite3 $HOME/.config/mihi/ + cargo test --verbose - name: Run Clippy run: cargo clippy --all-targets --all-features |
