Bibtex: fix type #11
This file contains hidden or 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 Format | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: DoozyX/clang-format-lint-action@v0.8 | |
| with: | |
| source: 'src' | |
| extensions: 'hpp,cpp' | |
| clangFormatVersion: 10 | |
| - name: install poetry | |
| run : | | |
| sudo apt-get install pipx | |
| pipx ensurepath | |
| pipx install poetry | |
| cd scripts | |
| poetry install --only dev | |
| cd .. | |
| - name: Linting | |
| run: | | |
| sudo apt-get install --no-install-recommends dos2unix | |
| ./scripts/lint.sh | |
| - name: Python Formatting | |
| run: | | |
| poetry run ruff format --check . |