CI: replace docker-image w/ registry-image type #166
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: go | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint: # <- name | |
| strategy: | |
| matrix: | |
| os: [macos-latest, windows-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - uses: golangci/golangci-lint-action@v9 | |
| # TODO: remove once caching bug is fixed https://github.com/golangci/golangci-lint-action/issues/420#issuecomment-3530581599 | |
| with: | |
| skip-cache: true | |
| #/TODO | |
| test-unit: # <- name | |
| strategy: | |
| matrix: | |
| os: [macos-latest, windows-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - run: go run github.com/onsi/ginkgo/v2/ginkgo run -r --skip-package integration |