From 7cdebbb40b76510afe859f4da303892380a51c6e Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 2 Feb 2026 01:56:22 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BA=AF=20shell=20=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=EF=BC=8C=E6=97=A0=E4=BB=BB=E4=BD=95=E5=A4=96=E9=83=A8?= =?UTF-8?q?=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pure-shell-test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/pure-shell-test.yml diff --git a/.gitea/workflows/pure-shell-test.yml b/.gitea/workflows/pure-shell-test.yml new file mode 100644 index 0000000..c8e2fdb --- /dev/null +++ b/.gitea/workflows/pure-shell-test.yml @@ -0,0 +1,18 @@ +name: Pure Shell Test + +on: + push: + branches: [main] + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu + steps: + - run: echo "Step 1 - Hello from Runner" + - run: echo "Step 2 - Current dir is $(pwd)" + - run: echo "Step 3 - User is $(whoami)" + - run: echo "Step 4 - Time is $(date)" + - run: | + echo "Step 5 - System info" + uname -a