Files
wrkflw/tests/workflows/example.yml
bahdotsh 181b5c5463 feat: reorganize test files and delete manual test checklist
- Move test workflows to tests/workflows/
- Move GitLab CI fixtures to tests/fixtures/gitlab-ci/
- Move test scripts to tests/scripts/
- Move Podman testing docs to tests/
- Update paths in test scripts and documentation
- Delete MANUAL_TEST_CHECKLIST.md as requested
- Update tests/README.md to reflect new organization
2025-08-09 15:30:53 +05:30

26 lines
503 B
YAML

name: Basic Workflow Example
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
GLOBAL_VAR: "global value"
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- name: Echo Hello
run: echo "Hello World"
- name: Show Environment
run: echo "Using global var: $GLOBAL_VAR"
- name: Run Multiple Commands
run: |
echo "This is a multi-line command"
echo "Current directory: $PWD"
ls -la