From e3d690ba102f3624ff65f5476dc68dfe98f2e221 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 1 Dec 2021 06:43:36 -0800 Subject: Move askama_mendes integration into Askama repo (#561) --- .github/workflows/rust.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b62ae5d..26ca174 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -113,6 +113,19 @@ jobs: - run: cargo test --package askama_tide --all-targets - run: cargo clippy --package askama_tide --all-targets -- -D warnings + Mendes: + 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_mendes --all-targets + - run: cargo clippy --package askama_mendes --all-targets -- -D warnings + Lint: runs-on: ubuntu-latest steps: -- cgit