Files
Portfolio/.gitea/workflows/deploy.yml
ManoelT 06a12162f3
Some checks are pending
Test Runner / test (push) Waiting to run
Test runner
2025-08-20 08:41:24 +02:00

19 lines
359 B
YAML

name: Test Runner
on:
push:
branches: [ main ]
workflow_dispatch: # Permet de lancer manuellement
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Hello World
run: echo "Hello from Gitea Actions!"
- name: System Info
run: |
echo "Runner info:"
whoami
pwd
uname -a