feat: add level
to blueprint metadata ui proto
#1320
This file contains 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: CFT CLI Tests | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'cli/**' | |
- '.github/workflows/test-cli.yml' | |
pull_request: | |
branches: | |
- 'master' | |
paths: | |
- 'cli/**' | |
- '.github/workflows/test-cli.yml' | |
concurrency: | |
group: '${{github.workflow}}-${{ github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
unit: | |
name: ${{ matrix.operating-system }} unit tests | |
runs-on: ${{ matrix.operating-system }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: 'cli' | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 | |
with: | |
go-version-file: cli/go.mod | |
cache-dependency-path: cli/go.sum | |
- run: |- | |
make test |