feat(visualize): add --canvas flag for Cursor topology view #55
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: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify export-minimal tarball | |
| run: ./scripts/pack-export-minimal.sh --check | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.62.2 | |
| - name: Test with coverage | |
| run: go test -coverprofile=coverage.out ./... | |
| - name: Coverage threshold | |
| run: ./scripts/check-coverage.sh coverage.out | |
| - uses: actions/upload-artifact@v4 | |
| if: success() | |
| with: | |
| name: coverage | |
| path: coverage.out | |
| - name: Build export CLI | |
| run: go build -o /dev/null ./cmd/threescale-export | |
| - name: Build seed CLI | |
| run: go build -o /dev/null ./cmd/threescale-seed | |
| - name: Build visualize CLI | |
| run: go build -o /dev/null ./cmd/threescale-visualize |