Skip to content

Commit

Permalink
consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmeow committed Oct 18, 2024
1 parent 134080a commit 6cce247
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions .github/workflows/clang_tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- name: Checkout branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- id: test_setup
uses: ./.github/actions/test_setup
- id: test-setup
uses: ./.github/actions/test-setup
with:
matrix_runner: 'ubuntu-22.04'
base_sha:
Expand All @@ -65,7 +65,7 @@ jobs:
#
# The `-k` flag is used to print all clang-tidy errors.
- name: clang-tidy
if: steps.test_setup.outputs.has_code == 'true'
if: steps.test-setup.outputs.has_code == 'true'
env:
TARGETS_FILE: ${{ runner.temp }}/targets
run: |
Expand All @@ -76,5 +76,5 @@ jobs:
# See "Disk space before build".
- name: Disk space after build
if: steps.test_setup.outputs.has_code == 'true'
if: steps.test-setup.outputs.has_code == 'true'
run: df -h
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Checkout branch
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- uses: ./.github/actions/test_setup
- uses: ./.github/actions/test-setup
with:
matrix_runner: ${{ matrix.runner }}
base_sha:
Expand All @@ -67,7 +67,7 @@ jobs:

# Build and run just the tests impacted by the PR or merge group.
- name: Test (${{ inputs.matrix_build_mode }})
if: steps.test_setup.outputs.has_code == 'true'
if: steps.test-setup.outputs.has_code == 'true'
shell: bash
env:
# 'libtool_check_unique failed to generate' workaround.
Expand All @@ -85,5 +85,5 @@ jobs:
# See "Disk space before build".
- name: Disk space after build
if: steps.test_setup.outputs.has_code == 'true'
if: steps.test-setup.outputs.has_code == 'true'
run: df -h

0 comments on commit 6cce247

Please sign in to comment.