summaryrefslogtreecommitdiffstats
path: root/.github/workflows/cron.yml
blob: 5998690d32b0b6402ad00e7e59d63dc6bc53e98a (plain)
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
name: Cron

on:
  schedule:
    # every friday at 10:00 am
    - cron: '0 10 * * 5'

jobs:
  check:
    name: Check
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust:
          - 1.66.0
          - stable

    steps:
      - name: Checkout sources
        uses: actions/checkout@v4.1.0

      - name: Install toolchain
        uses: dtolnay/rust-toolchain@master
        with:
          toolchain: ${{ matrix.rust }}

      - name: Run cargo check
        run: cargo check --all --all-features --examples

  clippy:
    needs: [check]
    name: Clippy
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust:
          - stable

    steps:
      - name: Checkout sources
        uses: actions/checkout@v4.1.0

      - name: Install toolchain
        uses: dtolnay/rust-toolchain@master
        with:
          toolchain: ${{ matrix.rust }}
          components: clippy

      - name: Run cargo check
        run: cargo clippy --all --all-features -- -D warnings