aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
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