15 lines
226 B
YAML
15 lines
226 B
YAML
name: Hello World CI
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
hello:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run hello script
|
|
run: ./hello.sh
|