Skip to content

feat: add minimal workflow to test GitHub Actions #1

feat: add minimal workflow to test GitHub Actions

feat: add minimal workflow to test GitHub Actions #1

Workflow file for this run

name: Debug
on: [push]
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Hello World
run: echo "Hello from GitHub Actions!"
- name: Show runner info
run: |
echo "Runner OS: $RUNNER_OS"
echo "GitHub Actor: $GITHUB_ACTOR"
echo "Repository: $GITHUB_REPOSITORY"