Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 986c74e117
All checks were successful
CI / test (push) Successful in 1s
Minimal echo CI to test runner
2026-03-22 12:33:06 +00:00

18 lines
316 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Echo test
run: echo "Hello World"
- name: Show environment
run: |
echo "PWD: $(pwd)"
echo "Files: $(ls -la)"
python3 --version || echo "Python not found"