Temporary update. This is not expected to pass tests #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: CI | |
# on: [workflow_dispatch, pull_request, push] | |
# jobs: | |
# test: | |
# runs-on: ubuntu-latest | |
# steps: [uses: fastai/workflows/nbdev-ci@master] | |
# I am looking at this for how to update the python version. | |
# https://forums.fast.ai/t/python-version-error-while-running-ci-operations-in-github/98482/3 | |
name: CI | |
on: [workflow_dispatch, pull_request, push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: nbdev test step | |
run: | | |
ls | |
- uses: fastai/workflows/nbdev-ci@master | |
with: | |
version: '3.10' |