diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dab103c5..3fcf2b29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,43 +51,41 @@ jobs: echo "::set-output name=gemdir::$(gem env gemdir)" shell: bash + - name: Cache HTMLProofer + uses: actions/cache@v2 + id: cache-htmlproofer + with: + path: ${{ steps.ruby-info.outputs.gemdir }} + key: ${{ matrix.os }}-ruby-${{ steps.ruby-info.outputs.ruby }}-gem-${{ steps.ruby-info.outputs.gem }} + - name: Setup HTMLProofer if: steps.cache-htmlproofer.outputs.cache-hit != 'true' run: sudo gem install html-proofer shell: bash - - name: Cache HTMLProofer - uses: actions/cache@v2 - id: cache-htmlproofer - with: - path: | - ${{ steps.ruby-info.outputs.gemdir }} - key: ${{ matrix.os }}-ruby-${{ steps.ruby-info.outputs.ruby }}-gem-${{ steps.ruby-info.outputs.gem }} - # Setup & Cache site builder - - name: Cache Site Builder - uses: actions/cache@v2 - id: cache-site-builder - with: - path: | - $GITHUB_WORKSPACE/.stack-work - key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }} +# - name: Cache Site Builder +# uses: actions/cache@v2 +# id: cache-site-builder +# with: +# path: $GITHUB_WORKSPACE/.stack-work +# key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }} - - name: Build Site Builder - if: steps.cache-site-builder.outputs.cache-hit != 'true' - run: make build-deps - shell: bash +# - name: Build Site Builder +# if: steps.cache-site-builder.outputs.cache-hit != 'true' +# run: make build-deps +# shell: bash # Build & Test Website - - name: Build Website - run: make build - shell: bash +# - name: Build Website +# run: make build +# shell: bash - - name: Test Website - run: make test - shell: bash +# - name: Test Website +# run: make test +# shell: bash