Skip to content

Submit model & .gitignore (#4) #14

Submit model & .gitignore (#4)

Submit model & .gitignore (#4) #14

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI Pipe
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
permissions:
contents: read
jobs:
nbqa-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install --upgrade flake8 importlib-metadata
- name: Run nbqa
run: nbqa flake8 ./notebooks/*.ipynb