File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
check_clippy :
21
- runs-on : ubuntu-24.04
21
+ # runs-on: ubuntu-24.04
22
+ runs-on : self-hosted
22
23
name : Clippy
23
24
steps :
24
25
- uses : actions/checkout@v4
25
26
- name : Run cargo clippy
26
27
run : cargo clippy --workspace --all-features -- -D warnings
27
28
28
29
check_fmt :
29
- runs-on : ubuntu-24.04
30
+ runs-on : self-hosted
30
31
name : Checking fmt
31
32
steps :
32
33
- uses : actions/checkout@v4
33
34
- name : Run cargo fmt
34
35
run : cargo fmt --all -- --check
35
36
36
37
rustdoc :
37
- runs-on : ubuntu-24.04
38
+ runs-on : self-hosted
38
39
name : Rustdoc
39
40
steps :
40
41
- uses : actions/checkout@v4
41
42
- name : Run rustdoc
42
43
run : cargo rustdoc --all-features -- -D warnings
43
44
44
45
build :
45
- runs-on : ubuntu-24.04
46
+ runs-on : self-hosted
46
47
name : Release build
47
48
steps :
48
49
- uses : actions/checkout@v4
49
50
- name : Run cargo release build
50
51
run : cargo build --release
51
52
52
53
benches :
53
- runs-on : ubuntu-24.04
54
+ runs-on : self-hosted
54
55
name : Run benchmarks
55
56
steps :
56
57
- uses : actions/checkout@v4
57
58
- name : Run benchmarks
58
59
run : cargo bench --all-targets
59
60
60
61
test :
61
- runs-on : ubuntu-24.04
62
+ runs-on : self-hosted
62
63
name : Run cargo test
63
64
strategy :
64
65
matrix :
You can’t perform that action at this time.
0 commit comments