From c6f9a053c7328e6c782508114bd96aa569b5de7d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 28 Jan 2020 22:06:11 +0100 Subject: Move Rocket integration into askama_rocket crate --- .github/workflows/rust.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a6da4c6..fd0c6b4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -61,7 +61,7 @@ jobs: cargo test --package askama_actix --all-targets cargo clippy --package askama_actix --all-targets -- -D warnings - nightly: + Rocket: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -70,9 +70,10 @@ jobs: profile: minimal toolchain: nightly override: true + components: clippy - run: | - cd testing - cargo test --features with-rocket + cargo test --package askama_rocket --all-targets + cargo clippy --package askama_rocket --all-targets -- -D warnings lint: runs-on: ubuntu-latest -- cgit