Update golift.io/xtractr digest to f69a7b0 #114
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: test-and-lint | |
| on: push | |
| permissions: | |
| contents: read | |
| jobs: | |
| gotest: | |
| strategy: | |
| matrix: | |
| os: [ubuntu, macos] | |
| runs-on: ${{ matrix.os }}-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 'stable' | |
| - name: go-generate | |
| run: go generate ./... | |
| - name: go-test | |
| run: go test ./pkg/... | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: 'v2.1' |