-
Notifications
You must be signed in to change notification settings - Fork 32
44 lines (35 loc) · 947 Bytes
/
clippy.yml
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
name: Clippy
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
stylecheck:
name: Stylecheck
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain with rustfmt and run cargo format in check mode
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
- name: Use OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.14.1
- run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Stable
run: rustup toolchain install stable --profile=default
- name: Use OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.14.1
- name: Run clippy
run: opam exec -- cargo clippy --all -- -D warnings