diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-13 15:27:05 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-01-13 15:27:05 +0100 |
| commit | 43632164dcacb3424ccb9ceba76ddfd7586cb59c (patch) | |
| tree | 5c8d42f793326fecef757a7e60eb94ad45c13511 /.github | |
| parent | bb3bbcfd018816a80077a6c1f96f842d2bf5f3a4 (diff) | |
| parent | 472d7fb9d37ec838fc69692cf24c8cb4a68af47a (diff) | |
| download | mihi-43632164dcacb3424ccb9ceba76ddfd7586cb59c.tar.gz mihi-43632164dcacb3424ccb9ceba76ddfd7586cb59c.zip | |
Merge branch 'inflection'
Diffstat (limited to '.github')
| -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 |
