18 lines
287 B
YAML
18 lines
287 B
YAML
|
|
name: Simple Check
|
||
|
|
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches:
|
||
|
|
- main
|
||
|
|
workflow_dispatch:
|
||
|
|
|
||
|
|
jobs:
|
||
|
|
test:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- name: Check out repository
|
||
|
|
uses: actions/checkout@v4
|
||
|
|
|
||
|
|
- name: Output Hello
|
||
|
|
run: echo "The workflow is running successfully"
|