Python version error while running CI operations in github

OK, that helped, it’s working now :slight_smile: 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!!

1 Like