Skip to content

Commit

Permalink
Renamed gh actions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
fandjelo authored Dec 27, 2023
1 parent fb6c912 commit adea8be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Pull-Request Linters
name: Check PR code quality

on:
workflow_call:

jobs:

check-code-quality:
check-pr-code-quality:
runs-on: ubuntu-latest

steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Test Code Coverage
name: Check Test Coverage

on:
workflow_call:

jobs:

test-code-coverage:
check-test-coverage:
runs-on: ubuntu-latest

steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
jobs:

check-code-quality:
uses: ./.github/workflows/pr-code-quality.yml
uses: ./.github/workflows/check-pr-code-quality.yml

check-code-format:
uses: ./.github/workflows/pr-code-format.yml
uses: ./.github/workflows/check-code-format.yml

test-coverage:
uses: ./.github/workflows/pr-test-coverage.yml
check-test-coverage:
uses: ./.github/workflows/check-test-coverage.yml

build-multi-platform:
uses: ./.github/workflows/build-multi-platform.yml
Expand Down

0 comments on commit adea8be

Please sign in to comment.