-
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (97 loc) · 3.15 KB
/
commits_check.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: 'Individual Commits Check'
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
pull_request_target:
types:
- opened
- edited
- reopened
- synchronize
push:
branches:
- '*'
jobs:
check-conventional-commits:
name: Check Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: webiny/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
check-push-commits:
if: ${{ github.event_name == 'push' }}
strategy:
matrix:
commit: ${{ github.event.commits }}
name: "Check: ${{ matrix.commit.message }}"
runs-on: ubuntu-latest
steps:
- name: "Install rust-toolchain stable"
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain : stable
components: clippy, rustfmt
- name: "Show environment"
run: |
rustc -vV
cargo -vV
- name: "Checkout"
uses: actions/checkout@v4
- name: Install cargo-readme
run: cargo install cargo-readme
- uses: Swatinem/rust-cache@v2
- name: Check spelling of entire workspace
id: typos_check
if: $${{ always() }}
uses: crate-ci/typos@master
- name: Check if readme is up to date
id: cargo_readme
if: $${{ always() }}
run: diff README.md <(cargo readme)
- name: "Cargo formatting"
id: cargo_fmt
if: $${{ always() }}
run: |
cargo fmt --all -- --check
- name: "Cargo doc"
id: cargo_doc
env:
RUSTDOCFLAGS: "-D warnings"
if: $${{ always() }}
run: cargo doc --locked
- name: "Cargo clippy"
id: cargo_clippy
if: $${{ always() }}
run: cargo clippy --profile=test --locked
- name: "Cargo test"
id: cargo_test
if: $${{ always() }}
run: cargo test --locked
- name: "Some checks failed"
if: ${{ failure() }}
run: |
echo "### :x: Checks Failed!" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "|Job|Status|" >> $GITHUB_STEP_SUMMARY
echo "|---|------|" >> $GITHUB_STEP_SUMMARY
echo "|typos|${{ steps.typos_check.outcome}}|" >> $GITHUB_STEP_SUMMARY
echo "|Cargo fmt|${{ steps.cargo_fmt.outcome }}|" >> $GITHUB_STEP_SUMMARY
echo "|Cargo readme|${{ steps.cargo_readme.outcome }}|" >> $GITHUB_STEP_SUMMARY
echo "|Cargo doc|${{ steps.cargo_doc.outcome }}|" >> $GITHUB_STEP_SUMMARY
echo "|Cargo clippy|${{ steps.cargo_clippy.outcome }}|" >> $GITHUB_STEP_SUMMARY
echo "|Cargo test|${{ steps.cargo_test.outcome }}|" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Please check the failed jobs and fix where needed." >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
exit 1
- name: "All checks passed"
if: ${{ success() }}
run: |
echo "### :white_check_mark: Checks Passed!" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY