add vo_mapping function #2420
Workflow file for this run
This file contains 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: python-linting | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Run ruff lint check | |
uses: chartboost/ruff-action@v1 | |
with: | |
args: 'check --select I' | |
- name: Run ruff format check | |
uses: chartboost/ruff-action@v1 | |
with: | |
args: 'format --check' | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Run black | |
uses: psf/black@stable |