-
Notifications
You must be signed in to change notification settings - Fork 4
61 lines (46 loc) · 1.49 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
57
58
59
60
61
name: CI
on:
merge_group:
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dylint-link
run: cargo install dylint-link
- name: Prettier
run: |
npm install -g prettier && prettier --check '**/*.md' '**/*.yml'
# S3v3ru5: Pin `markdown-link-check` to version 3.11 until the following issue is resolved:
# https://github.com/tcort/markdown-link-check/issues/304
- name: Markdown link check
run: |
npm install -g [email protected] && 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@v4
- name: Install dylint-link
run: cargo install dylint-link
- name: Test
run: cargo test