From 91c2bbf80468c12d0663330cff185f1d7680c91e Mon Sep 17 00:00:00 2001 From: Bjørn Madsen Date: Wed, 29 Jan 2020 09:32:39 +0100 Subject: Add support for warp --- .github/workflows/rust.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to '.github/workflows/rust.yml') 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: -- cgit