mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 02:10:48 +00:00
21 lines
447 B
YAML
21 lines
447 B
YAML
name: Verify clean folder
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install nbdev==1.2.11
|
|
- name: Run tools/clean.py
|
|
run: python tools/clean.py --verify-only
|