Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jan 18, 2024
1 parent 985d77c commit 053f273
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-python-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ on:
python-version:
description: "The python version to set up."
type: number
required: true
required: false
default: 3.8
working-directory:
description: "The current working directory."
type: string
required: true
required: false
default: "."
source-path:
description: "The path of the source files."
type: string
required: true
required: false
default: "."
check-django-migrations:
description: "Check if there are pending Django migrations."
type: boolean
required: true
required: false
default: true
pyproject-toml-directory:
description: "The directory where pyproject.toml is located."
type: string
required: true
required: false
default: "."

jobs:
Expand All @@ -35,6 +35,9 @@ jobs:
env:
PYPROJECT_TOML: ${{ inputs.pyproject-toml-directory }}/pyproject.toml
steps:
- name: 🛫 Checkout
uses: actions/checkout@v4

- name: 🐍 Set up Python ${{ inputs.python-version }} Environment
uses: ocadotechnology/codeforlife-workspace/.github/actions/python/setup-environment@main
with:
Expand Down

0 comments on commit 053f273

Please sign in to comment.