Skip to content

Commit

Permalink
Better github checks naming
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jun 9, 2023
1 parent e242fe2 commit 2964263
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ jobs:
deploy_to_playstore:
name: deploy to play store
runs-on: ubuntu-20.04
needs: build
if: ${{ github.event_name == 'release' || ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) }}
Expand Down Expand Up @@ -245,6 +246,7 @@ jobs:


comment_pr:
name: comment (pr)
runs-on: ubuntu-20.04
needs: build
if: ${{ github.event_name == 'pull_request' }}
Expand Down Expand Up @@ -275,6 +277,7 @@ jobs:
</details>
comment_commit:
name: comment (commit)
runs-on: ubuntu-20.04
needs: build
if: ${{ github.event_name == 'push' }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/code_layout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
# run: ./scripts/test_licenses.sh

banned_keywords_check:
name: banned keywords check
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -34,6 +35,7 @@ jobs:
run: ./scripts/test_banned_keywords.sh

cppcheck-1_9:
name: cpp check
runs-on: ubuntu-20.04
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
build:
name: build (ios)
runs-on: macos-12
env:
DEPLOYMENT_TARGET: '13.0'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
build:
name: build (linux)
runs-on: ubuntu-22.04

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
build:
name: build (macos)
runs-on: macos-11

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
build:
name: build (windows)
runs-on: windows-2022

steps:
Expand Down

0 comments on commit 2964263

Please sign in to comment.