Merge pull request #1 from kineticsystem/kineticsystem-patch-1 #87
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
| # This is a format job. Pre-commit has a first-party GitHub action, so we use | |
| # that: https://github.com/pre-commit/action | |
| name: Format | |
| on: [push, pull_request] | |
| jobs: | |
| pre-commit: | |
| name: Format | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4.4.0 | |
| with: | |
| python-version: "3.10" | |
| - name: Fix GPG signature issues | |
| run: | | |
| sudo apt-get update --allow-unauthenticated || true | |
| echo 'APT::Get::AllowUnauthenticated "true";' | sudo tee /etc/apt/apt.conf.d/99allow-unauth | |
| echo 'Acquire::AllowInsecureRepositories "true";' | sudo tee -a /etc/apt/apt.conf.d/99allow-unauth | |
| sudo apt-get update | |
| - name: Install system hooks | |
| run: sudo apt install -qq clang-format-14 cppcheck | |
| - uses: pre-commit/action@v3.0.0 | |
| with: | |
| extra_args: --all-files --hook-stage manual |