Skip to content

Testing Action

Testing Action #2

Workflow file for this run

name: Test-Workflow
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Say hello
run: echo "Hello from GitHub Actions"