Create test.yml

This commit is contained in:
Igor
2025-03-04 08:06:42 +01:00
committed by GitHub
parent d5394947af
commit cf112b8eb7

20
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Hello World
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Print Hello World
run: echo "Hello, World!"