Skip to content

Commit 69aabb3

Browse files
committed
job names
1 parent 994174b commit 69aabb3

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

.github/workflows/test-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test PR
33
on:
44
pull_request:
55
branches:
6-
- main
6+
- main
77

88
concurrency:
99
group: ${{ github.workflow }}-${{ github.head_ref }}
@@ -26,7 +26,7 @@ env:
2626
MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }}
2727

2828
jobs:
29-
test_pr:
29+
test:
3030
name: Test PR
3131
runs-on: ${{ matrix.os }}
3232
strategy:

.github/workflows/test-smoke.yml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
name: Smoke Test
1+
name: Smoke Tests
22

33
on:
44
schedule:
55
- cron: "0 4 * * *"
66
pull_request:
7-
branches:
8-
- main
97
paths:
108
- "spec/smoke/*"
119
- ".github/workflows/test-smoke.yml"
@@ -24,7 +22,7 @@ env:
2422
MANTECA_BASE_URL: ${{ secrets.MANTECA_BASE_URL }}
2523

2624
jobs:
27-
test_main:
25+
test:
2826
name: Smoke Test
2927
runs-on: ubuntu-latest
3028
env:
@@ -53,7 +51,7 @@ jobs:
5351
OPERATING_SYSTEM: ubuntu
5452
shell: bash
5553

56-
test_main_up:
54+
test_up:
5755
name: Smoke Test UP Account
5856
runs-on: ubuntu-latest
5957
env:
@@ -73,18 +71,18 @@ jobs:
7371
with:
7472
ruby-version: 3.3
7573

76-
# - name: Install Packages and Test
77-
# run: |
78-
# bundle install
79-
# rake smoke
80-
# env:
81-
# RUBY_VERSION: 3.3
82-
# OPERATING_SYSTEM: ubuntu
83-
# shell: bash
74+
- name: Install Packages and Test
75+
run: |
76+
bundle install
77+
rake smoke
78+
env:
79+
RUBY_VERSION: 3.3
80+
OPERATING_SYSTEM: ubuntu
81+
shell: bash
8482

8583
notify_for_failures:
8684
name: Notify for Failures
87-
needs: [test_main, test_main_up]
85+
needs: [test, test_up]
8886
if: failure()
8987
runs-on: ubuntu-latest
9088
steps:

0 commit comments

Comments
 (0)