[tools] fix_mutagen_use_action and fix_recipe_activity_level #34
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
| on: | |
| pull_request: | |
| paths: | |
| - '**.py' | |
| name: Style check - Python | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repository | |
| uses: actions/checkout@v1 | |
| with: | |
| fetch-depth: 10 | |
| - name: Install dependencies | |
| run: sudo apt-get install flake8 | sudo apt-get install -y astyle | |
| - name: Enable flake8 problem matcher | |
| run: echo "::add-matcher::build-scripts/problem-matchers/flake8.json" | |
| - name: Run Flake8 | |
| run: make python-check |