Files
runner-test/.gitea/workflows/tests.yaml
ThaMunsta 80a2f51f98
All checks were successful
Just test things / Pull-and-run (push) Successful in 28s
global envs?
2025-03-16 16:40:33 -04:00

28 lines
568 B
YAML

# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
name: Just test things
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
paths:
- '**tests.yaml'
env:
TEST: "Hello World!"
jobs:
Pull-and-run:
runs-on: synology
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v4
with:
ref: main
- name: Test some commands
env:
STACK_NAME: whoami
run: |
ls -la
echo "done"
echo $TEST