testing actions

This commit is contained in:
Cody Gibbs
2026-03-27 17:56:23 -04:00
parent 0373f323e6
commit 27f152fb26

View File

@@ -1,11 +1,17 @@
name: test name: Test Workflow
on: on:
push: push:
branches:
- main # only triggers on pushes to the main branch
jobs: jobs:
hello: hello:
runs-on: ubuntu-latest runs-on: ubuntu-latest # can also use ubuntu-22.04 or ubuntu-20.04
steps: steps:
- run: echo "hello" - name: Checkout code
uses: actions/checkout@v3
- name: Say hello
run: echo "Hello from the Gitea runner!"