ci: don't install private golangci-lint; bump to v2.4 #688
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
| on: [push, pull_request] | |
| name: Test | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.18.x, 1.23.x, 1.24.x] | |
| platform: [ubuntu-22.04, ubuntu-24.04, windows-latest, macos-13, macos-14, macos-15] | |
| runs-on: ${{ matrix.platform }} | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| # Disable caching as we don't have top-level go.sum needed for | |
| # the cache key, and specifying multiple go.sums is not trivial | |
| # (see https://github.com/moby/sys/pull/160 for details). | |
| cache: false | |
| - name: Install golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.3 | |
| # We don't need to run golangci-lint here yet, but | |
| # there's no way to avoid it, so run it on one module. | |
| # Using reexec as it works with go 1.18 and doesn't require other modules. | |
| working-directory: ./reexec | |
| - name: Set PACKAGES env | |
| if: ${{ matrix.go-version == '1.18.x' }} | |
| run: | | |
| # This corresponds with the list in Makefile:1, but omits the "userns" | |
| # and "capability" modules, which require go1.21 as minimum. | |
| echo 'PACKAGES=atomicwriter mountinfo mount reexec sequential signal symlink user' >> $GITHUB_ENV | |
| - name: go mod tidy | |
| run: | | |
| make foreach CMD="go mod tidy" | |
| git diff --exit-code | |
| - name: go fix | |
| run: | | |
| make foreach CMD="go fix" | |
| git diff --exit-code | |
| - name: Lint | |
| run: make lint | |
| - name: Cross build | |
| if: ${{ runner.os == 'Linux' }} | |
| run: make cross | |
| - name: Test | |
| run: | | |
| uname -a | |
| make test | |
| - name: Send to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} # used to upload coverage reports: https://github.com/moby/buildkit/pull/4660#issue-2142122533 | |
| codespell: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: pip install --break-system-packages codespell==v2.3.0 | |
| - run: codespell |