File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,12 @@ name: continuous-integration
33on :
44 push :
55
6+ env :
7+ testing-file : https://raw.githubusercontent.com/nushell/nushell/6a759abcbd9bdc6fb4bbd60144e309bd1a79786b/crates/nu-std/testing.nu
8+
69jobs :
710 test-node :
8- name : test-node- ${{ matrix.plugin }}
11+ name : test-node ( ${{ matrix.plugin }})
912 runs-on : ubuntu-latest
1013
1114 strategy :
@@ -21,14 +24,14 @@ jobs:
2124 version : nightly
2225
2326 - name : Download testing.nu
24- run : wget https://raw.githubusercontent.com/nushell/nushell/6a759abcbd9bdc6fb4bbd60144e309bd1a79786b/crates/nu-std/ testing.nu
27+ run : wget ${{ env. testing-file }}
2528
2629 - name : Run tests
2730 run : nu -c 'use testing.nu; testing run-tests --path ./javascript/${{ matrix.plugin }} --plugins ["./javascript/${{ matrix.plugin }}/${{ matrix.plugin}}.js"]'
2831
2932
3033 test-python :
31- name : test-python- ${{ matrix.plugin }}
34+ name : test-python ( ${{ matrix.plugin }})
3235 runs-on : ubuntu-latest
3336
3437 strategy :
4447 version : nightly
4548
4649 - name : Download testing.nu
47- run : wget https://raw.githubusercontent.com/nushell/nushell/6a759abcbd9bdc6fb4bbd60144e309bd1a79786b/crates/nu-std/ testing.nu
50+ run : wget ${{ env. testing-file }}
4851
4952 - name : Run tests
5053 run : nu -c 'use testing.nu; testing run-tests --path ./python/${{ matrix.plugin }} --plugins ["./python/${{ matrix.plugin }}/${{ matrix.plugin}}.py"]'
You can’t perform that action at this time.
0 commit comments