Skip to content

Commit

Permalink
use explizit names for jobs
Browse files Browse the repository at this point in the history
specify for pull request author joergi

#100
#101
  • Loading branch information
joergi committed Mar 3, 2023
1 parent 19050d4 commit cf92307
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing-educational-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
powershell:
educational-powershell:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.3.0
Expand All @@ -32,7 +32,7 @@ jobs:
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1

bash-linux:
educational-bash-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
Expand All @@ -50,7 +50,7 @@ jobs:
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1
bash-macos:
educational-bash-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing-language-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
powershell:
language-powershell:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1

bash-linux:
language-bash-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
Expand All @@ -71,7 +71,7 @@ jobs:
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1
bash-macos:
language-bash-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/testing-regular-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
linting-powershell:
regular-powershell:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -55,8 +55,8 @@ jobs:
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1
#
linting-bash-linux:

regular-bash-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down Expand Up @@ -93,7 +93,8 @@ jobs:
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1
linting-bash-macos:

regular-bash-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing-special-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
powershell:
special-powershell:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.3.0
Expand All @@ -32,7 +32,7 @@ jobs:
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1

bash-linux:
special-bash-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
Expand All @@ -51,7 +51,7 @@ jobs:
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
run: exit 1
bash-macos:
special-bash-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3.3.0
Expand Down

0 comments on commit cf92307

Please sign in to comment.