Merge branch 'master' into fix_launch_and_results #349
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: Codestyle checks | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| codestyle: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v3 | |
| - name: Setting up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.8 | |
| - name: Setting up Python dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r requirements_ci.txt | |
| - name: Running flake8 checks | |
| run: python3 -m flake8 ./ --config=setup.cfg --show-source --statistics |