diff options
author | Bjørn Madsen <bm@aeons.dk> | 2020-01-29 09:32:39 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 11:22:47 +0100 |
commit | 91c2bbf80468c12d0663330cff185f1d7680c91e (patch) | |
tree | 9cadabbc819ffeffb5ff02b1605cb5d614425b47 /.github | |
parent | e507c6faf61488cbce23a16eb823816f45130019 (diff) | |
download | askama-91c2bbf80468c12d0663330cff185f1d7680c91e.tar.gz askama-91c2bbf80468c12d0663330cff185f1d7680c91e.tar.bz2 askama-91c2bbf80468c12d0663330cff185f1d7680c91e.zip |
Add support for warp
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3fc011c..887d11d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -89,6 +89,20 @@ jobs: cargo test --package askama_rocket --all-targets cargo clippy --package askama_rocket --all-targets -- -D warnings + Warp: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + components: clippy + - run: | + cargo test --package askama_warp --all-targets + cargo clippy --package askama_warp --all-targets -- -D warnings + Lint: runs-on: ubuntu-latest steps: |