Skip to content

Add dataset collection #71

Add dataset collection

Add dataset collection #71

Workflow file for this run

name: Lint Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files