diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/rust.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b62ae5d..26ca174 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -113,6 +113,19 @@ jobs: - run: cargo test --package askama_tide --all-targets - run: cargo clippy --package askama_tide --all-targets -- -D warnings + Mendes: + 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_mendes --all-targets + - run: cargo clippy --package askama_mendes --all-targets -- -D warnings + Lint: runs-on: ubuntu-latest steps: |