File tree Expand file tree Collapse file tree 2 files changed +13
-17
lines changed Expand file tree Collapse file tree 2 files changed +13
-17
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,20 @@ 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 : actions-rs/cargo@v1
28
- with :
29
- command : test
30
- args : >
31
- --features=${{ matrix.feature }}
32
- --manifest-path=blis-src/Cargo.toml
27
+ - uses : dtolnay/rust-toolchain@stable
28
+ - run : >
29
+ cargo test
30
+ --features=${{ matrix.feature }}
33
31
34
32
linux :
35
- runs-on : ubuntu-20 .04
33
+ runs-on : ubuntu-22 .04
36
34
container :
37
35
image : rust
38
36
strategy :
@@ -43,17 +41,15 @@ jobs:
43
41
- static
44
42
- system
45
43
steps :
46
- - uses : actions/checkout@v1
44
+ - uses : actions/checkout@v4
47
45
with :
48
46
submodules : ' recursive'
49
47
- name : Install BLIS by apt
50
48
run : |
51
49
apt update
52
50
apt install -y libblis-dev
53
51
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
52
+ - uses : dtolnay/rust-toolchain@stable
53
+ - run : >
54
+ cargo test
55
+ --features=${{ matrix.feature }}
You can’t perform that action at this time.
0 commit comments