fix: the MIME type of an SVG file should be image/svg+xml #1421
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.25", "1.26"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Run tests | |
| run: | | |
| go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./... | |
| - if: ${{ matrix.go == '1.26' }} | |
| uses: shogo82148/actions-goveralls@v1 | |
| with: | |
| path-to-profile: coverage.txt | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26" | |
| cache: false | |
| - name: Run lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.9 | |
| args: --timeout 5m | |
| govulncheck: | |
| name: Check vulnerabilities | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: govulncheck | |
| uses: golang/govulncheck-action@v1 |