Skip to content

Commit ca32c31

Browse files
committed
updated job names
1 parent 6c524f4 commit ca32c31

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ name: continuous-integration
33
on:
44
push:
55

6+
env:
7+
testing-file: https://raw.githubusercontent.com/nushell/nushell/6a759abcbd9bdc6fb4bbd60144e309bd1a79786b/crates/nu-std/testing.nu
8+
69
jobs:
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:
@@ -44,7 +47,7 @@ jobs:
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"]'

0 commit comments

Comments
 (0)