diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71c19c2..48ab5cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: env: EPUBCHECK_VERSION: 4.2.5 steps: + - run: pwd - name: Download EPUBCheck run: | wget https://github.com/IDPF/epubcheck/releases/download/v${EPUBCHECK_VERSION}/epubcheck-${EPUBCHECK_VERSION}.zip @@ -21,13 +22,19 @@ jobs: - uses: actions/checkout@v2 + - run: pwd + - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.16 - name: Build - run: go build -v ./... + run: | + pwd + go build -v ./... - name: Test - run: go test -v ./... + run: | + pwd + go test -v ./...