Workflow config file is invalid. Please check your config file: yaml: unmarshal errors:
line 13: cannot unmarshal !!map into []*model.Step
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: debian
|
|
steps:
|
|
- run: echo All Good
|
|
- run: python -c 'print("Hello world!")'
|
|
test_container:
|
|
runs-on: debian
|
|
container:
|
|
image: python:latest
|
|
steps:
|
|
run: python -c 'print("Hello world!")'
|