fix format ambiguity if implicitly convertible to std::tuple (#33) #147
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: check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [gcc, clang] | |
feature: ['', asan, tsan, ubsan] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-env-setup | |
with: | |
bazel-cache-key: bazel-test-${{ matrix.toolchain }}-${{ matrix.feature }} | |
- run: | | |
bazel \ | |
test \ | |
--config=${{ matrix.toolchain }} \ | |
--features=${{ matrix.feature }} \ | |
//... | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-env-setup | |
with: | |
bazel-cache-key: bazel-coverage | |
- run: | | |
bazel \ | |
run \ | |
//tools:lcov_list | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./bazel-out/_coverage/_coverage_report.dat | |
fail_ci_if_error: true | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
flag: | |
- '--config=clang-format' | |
- '--config=clang-tidy' | |
- '--config=verbose-clang-tidy' | |
- '--compilation_mode=opt' | |
exclude: | |
- flag: ${{ github.event_name == 'pull_request' && '--config=verbose-clang-tidy' || 'dummy' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-env-setup | |
with: | |
bazel-cache-key: bazel-build-${{ matrix.flag }} | |
- run: | | |
bazel \ | |
build \ | |
${{ matrix.flag }} \ | |
//... | |
buildifier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-env-setup | |
with: | |
bazel-cache-key: bazel-buildifier | |
- run: | | |
bazel \ | |
run \ | |
//tools:buildifier.check |