diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 3a5c9190..00000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,41 +0,0 @@ -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: git checkout repo and show all files - uses: actions/checkout@v2 - with: - ref: hidden - - run: | - pwd - ls -lah - - - name: pwd - run: | - pwd - ls -lah - - - name: make directory and go into it - run: | - mkdir -p secondary - cd secondary - pwd - - - name: show last directory - run: pwd