aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-14 09:39:35 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-14 09:46:12 +0200
commitddd62edc4866b41d8e181576ae504a8a817e6d5a (patch)
tree7f64051d6e68646af6bd6b903a9cb82ef9228f97 /.github
parentcb60f4e2dea45f9d6fceb45c8547160a5c8b1a24 (diff)
downloadaskama-ddd62edc4866b41d8e181576ae504a8a817e6d5a.tar.gz
askama-ddd62edc4866b41d8e181576ae504a8a817e6d5a.tar.bz2
askama-ddd62edc4866b41d8e181576ae504a8a817e6d5a.zip
Add Tide target to CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml14
1 files changed, 14 insertions, 0 deletions
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: