Datetime date from CLDR data #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clang-tidy-review | |
# You can be more specific, but it currently only works on pull requests | |
on: [pull_request] | |
jobs: | |
build: | |
name: Lint ICU4C C++ executor | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Optionally generate compile_commands.json | |
# Run clang-tidy | |
# Note: when running locally at the command line, use the equivalent | |
# command when in the directory `executors/cpp`: | |
# clang-tidy *.cpp --fix-errors --config-file="clang-tidy-config.yml" -p . | |
# Note: you must run setup.sh and also run install_icu4c_binary.sh (for a given ICU4C version) first | |
# before running the above clang-tidy command | |
- uses: ZedThree/[email protected] | |
with: | |
# clang-tidy specific configs | |
build_dir: './executors/cpp' | |
config_file: './executors/cpp/clang-tidy-config.yml' | |
# Action-specific config | |
split_workflow: true | |
apt_packages: "libjson-c-dev,libicu-dev" | |
id: review | |
- uses: ZedThree/clang-tidy-review/[email protected] | |
# If there are any comments, fail the check | |
- if: steps.review.outputs.total_comments > 0 | |
run: exit 1 |