diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-28 22:06:11 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 09:25:59 +0100 |
commit | c6f9a053c7328e6c782508114bd96aa569b5de7d (patch) | |
tree | 362ef1f8ef421eb5913fa2834c10f6743e1ca7e1 /.github/workflows | |
parent | b56c11639f9ea5ef1354a1e91ca98541a16bca9b (diff) | |
download | askama-c6f9a053c7328e6c782508114bd96aa569b5de7d.tar.gz askama-c6f9a053c7328e6c782508114bd96aa569b5de7d.tar.bz2 askama-c6f9a053c7328e6c782508114bd96aa569b5de7d.zip |
Move Rocket integration into askama_rocket crate
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/rust.yml | 7 |
1 files changed, 4 insertions, 3 deletions
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 |