Skip to content

Updating inputs to make scattering order a required problem parameter #31

Updating inputs to make scattering order a required problem parameter

Updating inputs to make scattering order a required problem parameter #31

Workflow file for this run

name: qa
on:
pull_request:
branches:
- main
jobs:
check-flake8:
name: Python linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
flake8 . --count --show-source --statistics