aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-28 22:49:04 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-29 09:25:59 +0100
commitff24eef1ff7dcf3849fd1e6d9efec0de2bc57005 (patch)
treedb3a606f7cf88b6a932484c799a441cab9dd7996 /.github/workflows/rust.yml
parent75f32d3967e4d13b86b0d720ebc808c6fd9caa05 (diff)
downloadaskama-ff24eef1ff7dcf3849fd1e6d9efec0de2bc57005.tar.gz
askama-ff24eef1ff7dcf3849fd1e6d9efec0de2bc57005.tar.bz2
askama-ff24eef1ff7dcf3849fd1e6d9efec0de2bc57005.zip
Move Iron integration into a separate askama_iron crate
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index c8ae1ea..3c7fab9 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -34,7 +34,7 @@ jobs:
with:
command: test
- stable-integrations:
+ Actix-Web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@@ -44,10 +44,10 @@ jobs:
toolchain: stable
override: true
- run: |
- cd testing
- cargo test --features full
+ cargo test --package askama_actix --all-targets
+ cargo clippy --package askama_actix --all-targets -- -D warnings
- Actix-Web:
+ Gotham:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@@ -58,10 +58,10 @@ jobs:
override: true
components: clippy
- run: |
- cargo test --package askama_actix --all-targets
- cargo clippy --package askama_actix --all-targets -- -D warnings
+ cargo test --package askama_gotham --all-targets
+ cargo clippy --package askama_gotham --all-targets -- -D warnings
- Gotham:
+ Iron:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@@ -72,8 +72,8 @@ jobs:
override: true
components: clippy
- run: |
- cargo test --package askama_gotham --all-targets
- cargo clippy --package askama_gotham --all-targets -- -D warnings
+ cargo test --package askama_iron --all-targets
+ cargo clippy --package askama_iron --all-targets -- -D warnings
Rocket:
runs-on: ubuntu-latest