test_actions/.forgejo/workflows/test.yaml
Workflow config file is invalid. Please check your config file: yaml: line 22: could not find expected ':'

26 lines
488 B
YAML

on: [push]
jobs:
test:
runs-on: debian
steps:
- run: echo All Good
- run: ls
- run: pwd
test_container:
runs-on: debian
container:
image: python:latest
steps:
- run: python -c 'print("Hello world!")'
test_checkout:
runs-on: debian
container:
image:
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
- run: |
ls
pwd
echo $GITHUB_WORKSPACE
ls $GITHUB_WORKSPACE