Workflow config file is invalid. Please check your config file: yaml: unmarshal errors:
line 9: cannot unmarshal !!str `python ...` into model.Step
line 10: cannot unmarshal !!str `poetry ...` into model.Step
line 11: cannot unmarshal !!str `poetry ...` into model.Step
line 12: cannot unmarshal !!str `poetry ...` into model.Step
line 13: cannot unmarshal !!str `poetry ...` into model.Step
|
name: Test
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
run-tests:
|
|
runs-on: python:3.12
|
|
steps:
|
|
- python -m pip install poetry
|
|
- poetry install
|
|
- poetry env info
|
|
- poetry run python manage.py migrate
|
|
- poetry run pytest
|