DLPX-93204 estat and stbtrace miss nfsv4 writes (#105) #954
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: Python Lint | |
| on: [pull_request, push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: "3.10" | |
| - name: flake8 | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install flake8 | |
| flake8 . --show-source --statistics | |
| ./.github/scripts/flake8_stbtrace.sh |