Files
hastebin-ansi/.github/workflows/test.yml
2025-03-04 08:06:42 +01:00

21 lines
317 B
YAML

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!"