From ddd62edc4866b41d8e181576ae504a8a817e6d5a Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 14 Jul 2020 09:39:35 +0200 Subject: Add Tide target to CI --- .github/workflows/rust.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to '.github') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e5ce17a..435438f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -103,6 +103,20 @@ jobs: cargo test --package askama_warp --all-targets cargo clippy --package askama_warp --all-targets -- -D warnings + Tide: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + components: clippy + - run: | + cargo test --package askama_tide --all-targets + cargo clippy --package askama_tide --all-targets -- -D warnings + Lint: runs-on: ubuntu-latest steps: -- cgit