Merge pull request #7 from LEQO-Framework/main #1
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: Formatting and linting | |
| on: [push] | |
| jobs: | |
| check-formatting-and-linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.11.0 | |
| - name: Install black and flake8 | |
| run: python -m pip install black flake8 | |
| - name: Run flake8 | |
| run: flake8 | |
| - name: Run black | |
| run: black --check --verbose --extend-exclude=".resources." . |