Skip to content

Merge branch 'main' into dw/ruff #564

Merge branch 'main' into dw/ruff

Merge branch 'main' into dw/ruff #564

Workflow file for this run

name: Code Style
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Check style
run: |
ruff check