Skip to content

Commit 90ce2f2

Browse files
committed
Renames in workflows
1 parent 46bbcf4 commit 90ce2f2

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.github/workflows/java.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: java
33
on: pull_request
44

55
jobs:
6-
unit_tests_utc:
7-
name: Java Unit Tests
6+
unit_tests:
7+
name: Unit Tests
88
runs-on: ubuntu-latest
99

1010
steps:
@@ -32,8 +32,8 @@ jobs:
3232
working-directory: ./java
3333
run: mvn clean test
3434

35-
unit_tests_local:
36-
name: Java Unit Tests (Local TZ)
35+
unit_tests_local_tz:
36+
name: Unit Tests (Local TZ)
3737
runs-on: ubuntu-latest
3838

3939
steps:

.github/workflows/python.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
ALL_CHANGED_FILES: ${{ steps.get-changed-files.outputs.all_changed_files }}
4646
run: ruff format $ALL_CHANGED_FILES
4747

48-
unit_tests_ubuntu_utc:
49-
name: Unit Testing (Ubuntu)
48+
unit_tests:
49+
name: Unit Tests
5050
needs: lint_stylecheck
5151
runs-on: ubuntu-latest
5252
strategy:
@@ -75,8 +75,8 @@ jobs:
7575
- name: Run Pytest suite
7676
run: pytest python/tests
7777

78-
unit_tests_ubuntu_no_opt:
79-
name: Unit Testing (Ubuntu) (No Optional Dependencies)
78+
unit_tests_no_opt:
79+
name: Unit Tests (No Optional Dependencies)
8080
needs: lint_stylecheck
8181
runs-on: ubuntu-latest
8282

@@ -99,8 +99,8 @@ jobs:
9999
- name: Run Pytest suite
100100
run: pytest python/tests
101101

102-
unit_tests_ubuntu_pandas:
103-
name: Unit Testing (Ubuntu) (Pandas 1.x)
102+
unit_tests_pandas1:
103+
name: Unit Tests (Pandas 1.x)
104104
needs: lint_stylecheck
105105
runs-on: ubuntu-latest
106106

@@ -126,8 +126,8 @@ jobs:
126126
- name: Run Pytest suite
127127
run: pytest python/tests
128128

129-
unit_tests_ubuntu_local:
130-
name: Unit Testing (Ubuntu) (Local TZ)
129+
unit_tests_local_tz:
130+
name: Unit Tests (Local TZ)
131131
needs: lint_stylecheck
132132
runs-on: ubuntu-latest
133133

@@ -153,8 +153,8 @@ jobs:
153153
- name: Run Pytest suite
154154
run: pytest python/tests
155155

156-
unit_tests_ubuntu_typechecked:
157-
name: Typechecked Unit Testing (Ubuntu)
156+
unit_tests_typechecked:
157+
name: Unit Tests (Typechecked)
158158
needs: lint_stylecheck
159159
runs-on: ubuntu-latest
160160

@@ -177,8 +177,8 @@ jobs:
177177
run: pytest python/tests
178178
continue-on-error: true
179179

180-
unit_tests_windows_utc:
181-
name: Unit Testing (Windows)
180+
unit_tests_windows:
181+
name: Unit Tests (Windows)
182182
needs: lint_stylecheck
183183
runs-on: windows-latest
184184

@@ -204,8 +204,8 @@ jobs:
204204
- name: Run Pytest suite
205205
run: pytest python/tests
206206

207-
unit_tests_windows_local:
208-
name: Unit Testing (Windows) (Local TZ)
207+
unit_tests_windows_local_tz:
208+
name: Unit Tests (Windows) (Local TZ)
209209
needs: lint_stylecheck
210210
runs-on: windows-latest
211211

0 commit comments

Comments
 (0)