Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lint errors not recognized on version 0.10 #19

Closed
nicomem opened this issue Oct 5, 2020 · 0 comments · Fixed by #22
Closed

Lint errors not recognized on version 0.10 #19

nicomem opened this issue Oct 5, 2020 · 0 comments · Fixed by #22

Comments

@nicomem
Copy link

nicomem commented Oct 5, 2020

On the given C++ file:

#include <iostream>

int main() {
    std::cout
      <<
      "This is a test"
      <<
      std::endl
      ;

    return EXIT_SUCCESS;
}

And with the following github action configuration:

# [...]
jobs:
  myjob:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2

    - name: clang-format lint
      uses: DoozyX/clang-format-lint-action@v0.10
      with:
        source: './src/test.cpp'
        style: llvm

The clang-format does not report any error, even though it should.

This problem does not happen in the v0.9 version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant