19 lines
359 B
YAML
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 |