Set Content-Length for tile responses (fixes chunked encoding for gzipped tiles) #515
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: "^1.25.0" | |
| - run: go test ./pmtiles | |
| fmt_vet_lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| with: | |
| go-version: "^1.25.0" | |
| - run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi | |
| - run: go vet caddy/pmtiles_proxy.go | |
| - run: go vet main.go | |
| - run: go vet ./pmtiles | |
| - name: Run Revive Action by pulling pre-built image | |
| uses: docker://morphy/revive-action:v2 |