diff options
author | Denis Kayshev <topenkoff@gmail.com> | 2022-04-29 18:56:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-29 11:56:23 -0400 |
commit | aaad564074864ad463e369af7f98655b01565143 (patch) | |
tree | 6f56d7d8c372308dfd24bca76d24ec217dc39d86 /.github/workflows/ci.yml | |
parent | 4bd3699faba3f00dd8f59a358605abb6e485deb9 (diff) |
Add axum support (#59)
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f399ca..960e342 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,10 @@ jobs: run: | cargo test --all-targets --features warp cargo test --doc --features warp + - name: Run test axum + run: | + cargo test --all-targets --features axum + cargo test --doc --features axum - name: Run test no feature run: | cargo test --all-targets |