fix filter custom HTTP method case-insensitive #2505
  
    
      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: build and publish test coverage | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25.1 | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| - name: build webui | |
| working-directory: ./webui | |
| run: | | |
| npm install | |
| npm run copy-docs | |
| npm run build | |
| - name: Run Unit tests. | |
| run: go test -v --cover -coverprofile=coverage.out -covermode=atomic ./... | |
| - name: Upload Coverage report to CodeCov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} |