26 lines
545 B
YAML
26 lines
545 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.yml'
|
|
branches:
|
|
- tests
|
|
|
|
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"
|