Files
Portfolio/.gitea/workflows/deploy.yml
ManoelT 685160d556
All checks were successful
Test Runner / test (push) Successful in 0s
Update .gitea/workflows/deploy.yml
2025-08-20 08:46:00 +02:00

19 lines
352 B
YAML

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