Skip to content

[CI] Remove duplicate checkout step from build-and-run workflow #14

[CI] Remove duplicate checkout step from build-and-run workflow

[CI] Remove duplicate checkout step from build-and-run workflow #14

Workflow file for this run

name: My First Action
on:
push:
branches: [ main ] # runs every time you push to main
workflow_dispatch: # allows you to trigger manually
jobs:
hello:
runs-on: self-hosted # runs on your thunder-server
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Say hello
run: |
echo "👋 Hello from my self-hosted runner!"
echo "Running on $(hostname)"
echo "Time: $(date)"