-
Notifications
You must be signed in to change notification settings - Fork 5
56 lines (41 loc) · 1.31 KB
/
ci.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
45
46
47
48
49
50
51
52
53
54
55
56
name: CI
on: [pull_request, push, workflow_dispatch]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dylint-link
run: cargo install dylint-link
- name: Prettier
run: |
npm install -g prettier && prettier --check '**/*.md' '**/*.yml'
- name: Markdown link check
run: |
npm install -g markdown-link-check && find . -name '*.md' | xargs markdown-link-check
- name: Cargo sort
run: |
cargo install cargo-sort
find . -name Cargo.toml | xargs -n 1 dirname | xargs -n 1 cargo sort --check --grouped
- name: Format
run: |
cargo install rustfmt_if_chain
rustup component add rustfmt
find . -name '*.rs' -exec rustfmt_if_chain --edition 2021 {} \; && git diff --exit-code
- name: Format example READMEs
run: ./scripts/update_readmes.sh && git diff --exit-code
- name: Clippy
run: |
rustup component add clippy
./scripts/clippy.sh
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dylint-link
run: cargo install dylint-link
- name: Test
run: cargo test