OK, that helped, it’s working now I actually tweaked both
deploy.yaml
and test.yaml
. For future reference, this is what they look like now
deploy.yaml
name: Deploy to GitHub Pages
on:
push:
branches: [ "main", "master" ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: fastai/workflows/quarto-ghp@master
test.yaml
name: CI
on: [workflow_dispatch, pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: fastai/workflows/nbdev-ci@master
with:
version: '3.10'
Thanks!!