Skip to content

Operator Templates

Operator Templates #14

Workflow file for this run

# test_style.yml
# Check source code and unit tests follow the style guide.
name: CI-style
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Check code style
run: |
python -m tox -e style