Skip to content

Commit 39a9da2

Browse files
committed
renames
1 parent 5978d1e commit 39a9da2

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ci-gpu.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ concurrency:
2020

2121
jobs:
2222
check:
23+
name: Check Label
2324
runs-on: ubuntu-latest
2425
steps:
2526
- uses: flying-sheep/check@v1
2627
with:
2728
success: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'run-gpu-ci') }}
2829
test:
29-
name: GPU Tests
30+
name: All Tests
3031
needs: check
3132
runs-on: "cirun-aws-gpu--${{ github.run_id }}"
3233
timeout-minutes: 30
@@ -37,7 +38,7 @@ jobs:
3738
- uses: actions/checkout@v4
3839
with:
3940
fetch-depth: 0
40-
- name: Nvidia SMI sanity check
41+
- name: Check NVIDIA SMI
4142
run: nvidia-smi
4243
- uses: actions/setup-python@v5
4344
with:
@@ -58,7 +59,7 @@ jobs:
5859
rm test-data/.coverage
5960
- uses: codecov/codecov-action@v5
6061
with:
61-
name: GPU tests
62+
name: GPU Tests
6263
fail_ci_if_error: true
6364
files: test-data/coverage.xml
6465
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
22

3-
name: Python
3+
name: CI
44

55
on:
66
push:
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
test:
16-
name: Minimal test job
16+
name: Min Tests
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
@@ -36,7 +36,7 @@ jobs:
3636
rm test-data/.coverage
3737
- uses: codecov/codecov-action@v5
3838
with:
39-
name: Min tests
39+
name: Min Tests
4040
fail_ci_if_error: true
4141
files: test-data/coverage.xml
4242
token: ${{ secrets.CODECOV_TOKEN }}
@@ -58,7 +58,7 @@ jobs:
5858
run: pytest -m benchmark --codspeed
5959
token: ${{ secrets.CODSPEED_TOKEN }}
6060
check:
61-
name: Static checks
61+
name: Static Checks
6262
runs-on: ubuntu-latest
6363
strategy:
6464
matrix:

0 commit comments

Comments
 (0)