diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index baae054..12d4709 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -10,7 +10,13 @@ jobs: runs-on: ubuntu steps: - name: Echo hello - run: echo "Hello Gitea Actions!" + run: | + echo "Hello Gitea Actions!" - name: Show system info - run: uname -a \ No newline at end of file + run: | + uname -a + + - name: Show current directory + run: | + pwd \ No newline at end of file