Use atomic_int for cfp_packet_counter in CAN and packet_id in ETH TX #63
Workflow file for this run
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: Codespell Check | |
| on: | |
| pull_request: | |
| push: | |
| permissions: | |
| contents: read | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install codespell | |
| run: pip install codespell | |
| - name: Run codespell | |
| run: | | |
| codespell --skip="waf" --ignore-words=.codespell-ignore --quiet-level=2 |