From c314c2dd1d25df56df0cf329ccc32c6190ad9ab3 Mon Sep 17 00:00:00 2001 From: loyalsoldier Date: Mon, 23 Dec 2019 18:36:07 +0800 Subject: [PATCH] test the default directory --- .github/workflows/test.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..a1e90a54 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,31 @@ +name: Test and show directory of each steps +on: + schedule: + - cron: "0 22 * * *" + push: + branches: + - master + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Set up Go 1.13 + uses: actions/setup-go@v1 + with: + go-version: 1.13 + id: go + + - name: pwd + run: pwd + + - name: make directory and go into it + run: | + mkdir -p secondary + cd secondary + pwd + + - name: show last directory + run: pwd