Fix duplicate path join in OS filesystem utility #1436
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.8", "1.26.4"] | |
| 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.4' }} | |
| 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.4" | |
| cache: false | |
| - name: Run lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.12 | |
| args: --timeout 5m | |
| govulncheck: | |
| name: Check vulnerabilities | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: govulncheck | |
| uses: golang/govulncheck-action@31f7c5463448f83528bd771c2d978d940080c9fd | |
| with: | |
| go-version-input: 1.26.4 |