added test #180
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: | |
| pull_request: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/carapace-sh/go:1.23.1 | |
| steps: | |
| - name: shallow clone | |
| uses: actions/checkout@v5 | |
| if: "!startsWith(github.ref, 'refs/tags/')" | |
| - name: deep clone | |
| uses: actions/checkout@v5 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| fetch-depth: 0 | |
| - name: fix git safe.directory | |
| run: git config --global --add safe.directory '*' | |
| - name: Generate | |
| run: go generate ./... | |
| - name: Build | |
| run: ls cmd/ | xargs -I'{}' sh -c "cd ./cmd/{} && go build -v ." | |
| - name: Build Test | |
| run: go test -C cmd/carapace-aws -tags integration -run TestServices -c . | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: carapace-aws.text | |
| path: | | |
| cmd/carapace-aws/carapace-aws | |
| cmd/carapace-aws/carapace-aws.test | |
| retention-days: 1 | |
| - name: Test | |
| run: go test -v -coverprofile=profile.cov ./... | |
| - name: "Check formatting" | |
| run: '[ "$(gofmt -d -s . | tee -a /dev/stderr)" = "" ]' | |
| - uses: shogo82148/actions-goveralls@v1 | |
| with: | |
| path-to-profile: profile.cov | |
| - name: "staticcheck" | |
| run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./... | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| AUR_KEY: ${{ secrets.AUR_KEY }} | |
| FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | |
| GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
| test: | |
| runs-on: ubuntu-latest | |
| container: amazon/aws-cli:2.32.2 | |
| needs: build | |
| steps: | |
| - uses: actions/download-artifact@v6 | |
| with: | |
| name: carapace-aws | |
| path: /usr/local/bin/ | |
| - name: fix permissions | |
| run: chmod +x /usr/local/bin/carapace-aws* | |
| - name: test aws | |
| run: aws help | |
| - name: test carapace-aws | |
| run: carapace-aws --help | |
| - name: test carapace-aws.test | |
| run: carapace-aws.test |