summaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yml
blob: c0967cac3b90fb9d750ed5f11137d1b028d1a26e (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
name: Rust PR Checks

on:
  pull_request:
    paths:
      - 'rust/**'

jobs:
  build_and_lint:
    name: cargo check & cargo clippy
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v3
        with:
          submodules: true

      - name: Install Clang
        run: |
          sudo apt update
          sudo apt install clang -y

      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          toolchain: 1.77.0
          profile: minimal
          override: true
          components: clippy

      - name: cargo check
        working-directory: ./rust
        run: cargo check --workspace --all-features

      - name: cargo clippy
        working-directory: ./rust
        run: cargo clippy -- -D warnings
        continue-on-error: true
        # If this step fails, it will warn (?)