File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Trigger CI on PR updates and main branch pushes
2
2
# Uses caching and selective path triggers to optimize performance
3
3
4
- name : Robrix Rust CI
4
+ name : Robrix CI
5
5
6
6
# Only `main` branch
7
7
on :
45
45
# Basic compilation check to ensure code builds
46
46
check :
47
47
if : github.event.pull_request.draft == false
48
- name : Check
48
+ name : cargo check
49
49
runs-on : ubuntu-latest
50
50
steps :
51
51
- uses : actions/checkout@v4
60
60
61
61
clippy :
62
62
if : github.event.pull_request.draft == false
63
- name : Clippy
63
+ name : clippy
64
64
runs-on : ubuntu-latest
65
65
steps :
66
66
- uses : actions/checkout@v4
77
77
78
78
typos :
79
79
if : github.event.pull_request.draft == false
80
- name : Check for typos
80
+ name : typos
81
81
runs-on : ubuntu-latest
82
82
steps :
83
83
- uses : actions/checkout@v4
84
84
- name : Check for typos
85
- uses : crate-ci/typos@master
85
+ uses : crate-ci/typos@master
You can’t perform that action at this time.
0 commit comments