aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
blob: 543837951ed80f072f5b3deaf602f404e9e5d98b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: CI

on:
  push:
    branches: ['main']
  pull_request:
  schedule:
    - cron: "32 4 * * 5"

jobs:
  Test:
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
        rust: [stable, beta]
        exclude:
          - os: macos-latest
            rust: beta
          - os: windows-latest
            rust: beta
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v1
      - uses: ./.github/actions/setup
        with:
          toolchain: ${{ matrix.rust }}
          key: test-${{ matrix.os }}-${{ matrix.rust }}
      - run: cargo build --all-targets
      - run: cargo test

  Package:
    strategy:
      matrix:
        package: [
          askama, askama_derive, testing,
          askama_actix, askama_axum, askama_escape, askama_gotham, askama_hyper,
          askama_mendes, askama_rocket, askama_tide, askama_warp,
        ]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: ./.github/actions/setup
        with:
          key: ${{ matrix.package }}
          components: clippy
      - run: cd ${{ matrix.package }} && cargo test --all-targets
      - run: cd ${{ matrix.package }} && cargo clippy --all-targets -- -D warnings

  Lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: ./.github/actions/setup
        with:
          key: lint
          components: rustfmt, clippy
      - run: cargo fmt --all -- --check
      - run: cargo clippy --all-targets -- -D warnings