@@ -13,13 +13,13 @@ jobs:
13
13
check-fmt :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- name : Check formatting
18
18
run : cargo fmt -- --check
19
19
clippy :
20
20
runs-on : ubuntu-latest
21
21
steps :
22
- - uses : actions/checkout@v2
22
+ - uses : actions/checkout@v4
23
23
- name : Install clippy
24
24
run : rustup component add clippy
25
25
- name : Run clippy
29
29
# env:
30
30
# RUSTFLAGS: -D warnings
31
31
steps :
32
- - uses : actions/checkout@v2
32
+ - uses : actions/checkout@v4
33
33
- name : Build --no-default-feature
34
34
run : cargo build --no-default-features;
35
35
- name : Build (default features)
49
49
build-nalgebra-all-features :
50
50
runs-on : ubuntu-latest
51
51
steps :
52
- - uses : actions/checkout@v2
52
+ - uses : actions/checkout@v4
53
53
- run : cargo build --all-features;
54
54
- run : cargo build -p nalgebra-glm --all-features;
55
55
test-nalgebra :
@@ -66,19 +66,19 @@ jobs:
66
66
with :
67
67
toolchain : 1.79.0
68
68
override : true
69
- - uses : actions/checkout@v2
69
+ - uses : actions/checkout@v4
70
70
- name : test
71
71
run : cargo test --features arbitrary,rand,serde-serialize,sparse,debug,io,compare,libm,proptest-support,slow-tests,rkyv-safe-deser,rayon;
72
72
test-nalgebra-glm :
73
73
runs-on : ubuntu-latest
74
74
steps :
75
- - uses : actions/checkout@v2
75
+ - uses : actions/checkout@v4
76
76
- name : test nalgebra-glm
77
77
run : cargo test -p nalgebra-glm --features arbitrary,serde-serialize;
78
78
test-nalgebra-sparse :
79
79
runs-on : ubuntu-latest
80
80
steps :
81
- - uses : actions/checkout@v2
81
+ - uses : actions/checkout@v4
82
82
- name : test nalgebra-sparse
83
83
# Manifest-path is necessary because cargo otherwise won't correctly forward features
84
84
# We increase number of proptest cases to hopefully catch more potential bugs
@@ -89,15 +89,15 @@ jobs:
89
89
test-nalgebra-macros :
90
90
runs-on : ubuntu-latest
91
91
steps :
92
- - uses : actions/checkout@v2
92
+ - uses : actions/checkout@v4
93
93
- name : test nalgebra-macros
94
94
run : cargo test -p nalgebra-macros
95
95
build-wasm :
96
96
runs-on : ubuntu-latest
97
97
# env:
98
98
# RUSTFLAGS: -D warnings
99
99
steps :
100
- - uses : actions/checkout@v2
100
+ - uses : actions/checkout@v4
101
101
- run : rustup target add wasm32-unknown-unknown
102
102
- name : build nalgebra
103
103
run : cargo build --verbose --target wasm32-unknown-unknown;
@@ -127,6 +127,6 @@ jobs:
127
127
docs :
128
128
runs-on : ubuntu-latest
129
129
steps :
130
- - uses : actions/checkout@v2
130
+ - uses : actions/checkout@v4
131
131
- name : Generate documentation
132
132
run : cargo doc
0 commit comments