mirror of
https://github.com/iminet/dev.git
synced 2026-08-22 23:28:25 +02:00
Added test action
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user