mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2026-05-18 05:05:35 +02:00
- 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
17 lines
269 B
YAML
17 lines
269 B
YAML
name: Invalid Reusable Format
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
valid-job:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Test step
|
|
run: echo "This is a valid job"
|
|
|
|
invalid-reusable-job:
|
|
uses: invalid-format
|
|
with:
|
|
param: "value" |