8000 fix issues · sdpython/onnx-array-api@4c42a4b · GitHub
[go: up one dir, main page]

Skip to content

fix issues

fix issues #549

Workflow file for this run

name: Black + Ruff Format Checker
on: [push, pull_request]
jobs:
black-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
with:
options: "--diff --check"
src: "."
ruff-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
0