fix: use path.Clean to preserve unix paths in static handler #1395
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: CI | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| tags-ignore: | |
| - "v*.*.*" | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| tests: | |
| name: Unit and integrations tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: ["1.24", "1.25"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run tests | |
| run: | | |
| go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./... | |
| - if: ${{ matrix.go == '1.25' }} | |
| uses: shogo82148/actions-goveralls@v1 | |
| with: | |
| path-to-profile: coverage.txt | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25" | |
| cache: false | |
| - name: Run lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.4 | |
| args: --timeout 5m | |
| govulncheck: | |
| name: Check vulnerabilities | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: govulncheck | |
| uses: golang/govulncheck-action@v1 |