Replace usage of function "find" with "emplace". #333
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: 'Check code style' | |
on: | |
push: | |
paths: | |
- '**/*.hpp' | |
- '**/*.cpp' | |
- '**/*.py' | |
- 'build' | |
- '.clang-format' | |
- '.isort.cfg' | |
- '.style.yapf' | |
- '.github/workflows/test_format.yml' | |
jobs: | |
test_format: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check C++ code style | |
run: | | |
./build test_format_cpp | |
- name: Check Python code style | |
run: | | |
./build test_format_python |