Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
clang-version: ['8','9','10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20']
clang-version: ['9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ inputs:
version:
description: |
The desired version of the [clang-tools](https://github.com/cpp-linter/clang-tools-pip) to use.
Accepted options are strings which can be 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, or 8.
Accepted options are strings which can be 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10 or 9.

- Set this option to a blank string (`''`) to use the platform's default installed version.
- This value can also be a path to where the clang tools are installed (if using a custom install location).
required: false
default: 16
default: 18
verbosity:
description: |
This controls the action's verbosity in the workflow's logs.
Expand Down Expand Up @@ -323,6 +323,7 @@ runs:
if: runner.os == 'macOS'
shell: nu {0}
run: |-
^brew update
let brew_install_arg = 'llvm@${{ inputs.version }}'
let result = (^brew install $brew_install_arg) | complete
print $result
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies = []

[dependency-groups]
action = [
"clang-tools==0.15.2",
"clang-tools==0.15.3",
"cpp-linter==1.10.7",
]
dev = [
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading