az cli client cleanup #1102
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: Draft JSON Integration Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
deployments: read | |
packages: none | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22 | |
- name: make | |
run: make | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: helm-skaffold | |
path: ./test/skaffold.yaml | |
if-no-files-found: error | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: draft-binary | |
path: ./draft | |
if-no-files-found: | |
error | |
info: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: draft-binary | |
- run: chmod +x ./draft | |
- run: | | |
mkdir ./langtest | |
- run: | | |
./draft info > ./info.json | |
echo "Draft Info JSON schema:" | |
cat test/info_schema.json | |
echo "Draft Info JSON:" | |
cat info.json | |
- name: Validate JSON | |
run: | | |
npm install -g ajv-cli | |
ajv validate -s test/info_schema.json -d info.json |