Skip to content

Feature/add open in colab #13

Feature/add open in colab

Feature/add open in colab #13

Workflow file for this run

name: Pre-commit Check
on:
pull_request:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files