File tree Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Expand file tree Collapse file tree 1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
rust_tests :
10
- name : Run tests
10
+ name : Run rust tests
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
matrix :
@@ -18,16 +18,29 @@ jobs:
18
18
- name : Convert symlinks to hardlink (windows only)
19
19
run : powershell.exe scripts/symlinks-to-hardlinks.ps1
20
20
if : matrix.os == 'windows-latest'
21
- - name : build rustpython
22
- uses : actions-rs/cargo@v1
23
- with :
24
- command : build
25
- args : --verbose --all
26
21
- name : run rust tests
27
22
uses : actions-rs/cargo@v1
28
23
with :
29
24
command : test
30
25
args : --verbose --all
26
+
27
+ snippets :
28
+ name : Run snippets tests
29
+ runs-on : ${{ matrix.os }}
30
+ strategy :
31
+ matrix :
32
+ os : [macos-latest, ubuntu-latest, windows-latest]
33
+ fail-fast : false
34
+ steps :
35
+ - uses : actions/checkout@master
36
+ - name : Convert symlinks to hardlink (windows only)
37
+ run : powershell.exe scripts/symlinks-to-hardlinks.ps1
38
+ if : matrix.os == 'windows-latest'
39
+ - name : build rustpython
40
+ uses : actions-rs/cargo@v1
41
+ with :
42
+ command : build
43
+ args : --release --verbose --all
31
44
- uses : actions/setup-python@v1
32
45
with :
33
46
python-version : 3.6
You can’t perform that action at this time.
0 commit comments