From 55bd82aff4247403e8eb29f2f396a8f7366df108 Mon Sep 17 00:00:00 2001 From: Jeremy Howard Date: Thu, 12 Sep 2024 15:29:32 +1000 Subject: [PATCH] docs --- .github/workflows/deploy.yaml | 14 ++++++++++++++ .github/workflows/test.yaml.off | 7 +++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/deploy.yaml create mode 100644 .github/workflows/test.yaml.off diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..29bfc57 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,14 @@ +name: Deploy to GitHub Pages + +permissions: + contents: write + pages: write + +on: + push: + branches: [ "main", "master" ] + workflow_dispatch: +jobs: + deploy: + runs-on: ubuntu-latest + steps: [uses: fastai/workflows/quarto-ghp@master] diff --git a/.github/workflows/test.yaml.off b/.github/workflows/test.yaml.off new file mode 100644 index 0000000..5608592 --- /dev/null +++ b/.github/workflows/test.yaml.off @@ -0,0 +1,7 @@ +name: CI +on: [workflow_dispatch, pull_request, push] + +jobs: + test: + runs-on: ubuntu-latest + steps: [uses: fastai/workflows/nbdev-ci@master]