Skip to content

Support HF Hub datasets (#2) #4

Support HF Hub datasets (#2)

Support HF Hub datasets (#2) #4

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.10.12
cache: pip
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
- name: black
uses: psf/black@stable
with:
version: 23.9.1
jupyter: true
- name: isort
uses: isort/isort-action@master
with:
configuration: "--settings-path=pyproject.toml --check-only --diff"
isort-version: 5.12.0