Skip to content

feat: generate the descriptor's JSON Schema from the descriptor #363

feat: generate the descriptor's JSON Schema from the descriptor

feat: generate the descriptor's JSON Schema from the descriptor #363

Workflow file for this run

name: check
on:
schedule:
- cron: '0 18 * * *'
workflow_dispatch:
pull_request:
paths-ignore: ['**.md', 'docs/**', 'assets/**', 'LICENSE']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: gofmt
run: |
unformatted="$(gofmt -l .)"
if [ -n "$unformatted" ]; then
echo "these files are not gofmt-clean:"
echo "$unformatted"
exit 1
fi
- run: go vet ./...
- run: go build ./...
- run: go test ./...
- name: acp agent
working-directory: cmd/bluecollar-acp
run: |
go vet ./...
go build ./...
go test ./...