File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change 1
- name : Continuous integration
1
+ name : CI
2
2
3
3
on :
4
4
pull_request :
7
7
- master
8
8
9
9
jobs :
10
- os_tests :
11
- name : " Tests / OS: ${{ matrix.os }} - ${{ matrix.channel }} "
10
+ test :
11
+ name : Tests
12
12
runs-on : ${{ matrix.os }}
13
13
strategy :
14
14
matrix :
15
15
channel :
16
- - stable
17
- - beta
18
- - nightly
19
- - 1.23.0
16
+ - stable
17
+ - beta
18
+ - nightly
19
+ - 1.23.0
20
20
os :
21
- # FIXME: compiling with 1.23 on macOS 12 fails to linL
22
- # archive member 'rust.metadata.bin' with length 40821 is not mach-o or llvm bitcode file
23
- - macos-11
24
- - windows-2022
25
- - ubuntu-22.04
21
+ - macos-11
22
+ - windows-2022
23
+ - ubuntu-22.04
26
24
27
25
steps :
28
26
- name : Checkout repository
29
27
uses : actions/checkout@v4
30
28
31
29
- name : Update rust
32
- run : rustup update ${{ matrix.channel }} --no-self-update
30
+ run : |
31
+ rustup default ${{ matrix.channel }}
32
+ rustup update --no-self-update
33
33
34
- - name : Tests
35
- run : cargo +${{ matrix.channel }} test --all
34
+ - run : cargo +${{ matrix.channel }} test --all
You can’t perform that action at this time.
0 commit comments