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 77
88jobs :
99 rust_tests :
10- name : Run tests
10+ name : Run rust tests
1111 runs-on : ${{ matrix.os }}
1212 strategy :
1313 matrix :
@@ -18,16 +18,29 @@ jobs:
1818 - name : Convert symlinks to hardlink (windows only)
1919 run : powershell.exe scripts/symlinks-to-hardlinks.ps1
2020 if : matrix.os == 'windows-latest'
21- - name : build rustpython
22- uses : actions-rs/cargo@v1
23- with :
24- command : build
25- args : --verbose --all
2621 - name : run rust tests
2722 uses : actions-rs/cargo@v1
2823 with :
2924 command : test
3025 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
3144 - uses : actions/setup-python@v1
3245 with :
3346 python-version : 3.6
You can’t perform that action at this time.
0 commit comments