All checks were successful
Minimal Gitea Actions Demo / Minimal-Gitea-Actions (push) Successful in 0s
18 lines
435 B
YAML
18 lines
435 B
YAML
name: Minimal Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Minimal-Gitea-Actions:
|
|
runs-on: native
|
|
steps:
|
|
- name: Check Environment
|
|
run: |
|
|
echo "Running on $(uname -a)"
|
|
echo "Current user: $(whoami)"
|
|
echo "Home directory: $HOME"
|
|
echo "Current directory: $(pwd)"
|
|
echo "Directory contents:"
|
|
ls -la
|
|
|