File tree Expand file tree Collapse file tree 1 file changed +12
-15
lines changed Expand file tree Collapse file tree 1 file changed +12
-15
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
macos :
11
- runs-on : macos-10.15
11
+ runs-on : macos-13
12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
@@ -17,22 +17,21 @@ jobs:
17
17
- static
18
18
- system
19
19
steps :
20
- - uses : actions/checkout@v1
20
+ - uses : actions/checkout@v4
21
21
with :
22
22
submodules : ' recursive'
23
23
- name : Install BLIS by homebrew
24
24
run : |
25
25
brew install blis
26
26
if : ${{ contains(matrix.feature, 'system') }}
27
+ - uses : dtolnay/rust-toolchain@stable
27
28
- uses : actions-rs/cargo@v1
28
- with :
29
- command : test
30
- args : >
31
- --features=${{ matrix.feature }}
32
- --manifest-path=blis-src/Cargo.toml
29
+ - run : >
30
+ cargo test
31
+ --features=${{ matrix.feature }}
33
32
34
33
linux :
35
- runs-on : ubuntu-20 .04
34
+ runs-on : ubuntu-22 .04
36
35
container :
37
36
image : rust
38
37
strategy :
@@ -43,17 +42,15 @@ jobs:
43
42
- static
44
43
- system
45
44
steps :
46
- - uses : actions/checkout@v1
45
+ - uses : actions/checkout@v4
47
46
with :
48
47
submodules : ' recursive'
49
48
- name : Install BLIS by apt
50
49
run : |
51
50
apt update
52
51
apt install -y libblis-dev
53
52
if : ${{ contains(matrix.feature, 'system') }}
54
- - uses : actions-rs/cargo@v1
55
- with :
56
- command : test
57
- args : >
58
- --features=${{ matrix.feature }}
59
- --manifest-path=blis-src/Cargo.toml
53
+ - uses : dtolnay/rust-toolchain@stable
54
+ - run : >
55
+ cargo test
56
+ --features=${{ matrix.feature }}
You can’t perform that action at this time.
0 commit comments