diff options
| author | Fuwn <[email protected]> | 2026-04-27 05:02:13 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-27 05:02:13 +0000 |
| commit | 2c123d4ce57bcc4017b769268e15489f3cb90a67 (patch) | |
| tree | 01317c6eb3cafd5d80707ab97491397e71a93e0e | |
| parent | fix(response)!: Preserve non-UTF-8 bytes in binary success responses (diff) | |
| download | archived-windmark-2c123d4ce57bcc4017b769268e15489f3cb90a67.tar.xz archived-windmark-2c123d4ce57bcc4017b769268e15489f3cb90a67.zip | |
ci: Run cargo test in addition to cargo check
| -rw-r--r-- | .github/workflows/check.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index f21d758..27d782c 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -33,3 +33,10 @@ jobs: with: command: check args: --verbose + + - name: Test 🧪 + uses: actions-rs/cargo@v1 + continue-on-error: false + with: + command: test + args: --verbose --features auto-deduce-mime |