Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Failing after 2m30s
Comprehensive CI/CD Pipeline / Security Audit (push) Failing after 9s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 51s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped
- Revert to manual git clone like apt-ostree CI - Use correct repository name: apt-ostree-builder (not bootc-image-builder) - Update all git clone commands to use correct repo URL - Disable extra workflow files to focus on main ci.yml
16 lines
278 B
Text
16 lines
278 B
Text
---
|
|
name: Test Workflow
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Test step
|
|
run: |
|
|
echo "Hello from test workflow!"
|
|
echo "This is a simple test to verify CI is working."
|