Skip to content

Changed deploy.yml from fastai to use one from quarto actions #9

Changed deploy.yml from fastai to use one from quarto actions

Changed deploy.yml from fastai to use one from quarto actions #9

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches: [master, dev]
jobs:
test:
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu]
version: ["3.10", "3.11"]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: fastai/workflows/nbdev-ci@master
with:
version: ${{ matrix.version }}
pre: 1
- name: test docs build
run: |
nbdev_docs
if [ -f "_docs/index.html" ]; then
echo "docs built successfully.";
else
exit 1;
fi