From 75f32d3967e4d13b86b0d720ebc808c6fd9caa05 Mon Sep 17 00:00:00 2001
From: Dirkjan Ochtman <dirkjan@ochtman.nl>
Date: Tue, 28 Jan 2020 22:17:22 +0100
Subject: Move Gotham integration into separate askama_gotham crate

---
 .github/workflows/rust.yml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

(limited to '.github/workflows')

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index fd0c6b4..c8ae1ea 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -61,6 +61,20 @@ jobs:
           cargo test --package askama_actix --all-targets
           cargo clippy --package askama_actix --all-targets -- -D warnings
 
+  Gotham:
+    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_gotham --all-targets
+          cargo clippy --package askama_gotham --all-targets -- -D warnings
+
   Rocket:
     runs-on: ubuntu-latest
     steps:
-- 
cgit