Skip to content

release

release #72

Workflow file for this run

name: CI
on: [workflow_dispatch, pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install playwrightnb and dependencies
run: |
pip install playwrightnb
playwright install
- uses: fastai/workflows/nbdev-ci@master