Added test action

This commit is contained in:
iminet
2026-08-12 21:43:37 +02:00
parent f50495c41d
commit a1cee2b8d3
24 changed files with 74 additions and 628 deletions
+24
View File
@@ -0,0 +1,24 @@
name: Hello GitHub Actions
on:
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Say hello
run: echo "Hello from GitHub Actions!"
- name: Show operating system
run: uname -a
- name: Show current directory
run: pwd
- name: List files
run: ls -la
- name: Show current time
run: date