Skip to content

Commit

Permalink
Change test.yaml to specify GitHub Action tests to run with Python …
Browse files Browse the repository at this point in the history
…3.10
  • Loading branch information
hyunjongkimmath committed Feb 17, 2024
1 parent f23891e commit 0faa3d4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@
# 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'

0 comments on commit 0faa3d4

Please sign in to comment.