Skip to content

Add benchmark and dataset #191

Add benchmark and dataset

Add benchmark and dataset #191

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Lint Subwiz
if: always()
uses: psf/black@stable
with:
options: "--check --diff --color"
src: "./subwiz"
- name: Lint Tests
if: always()
uses: psf/black@stable
with:
options: "--check --diff --color"
src: "./tests"