Sanitize filenames in FileReceiver #2031
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: pycodestyle | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| pycodestyle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pycodestyle | |
| run: pip install pycodestyle | |
| - name: Run pycodestyle | |
| run: pycodestyle . --exclude python/ccsds,docs,tools,tests,examples,python/bindings |