Skip to content

feat: added json schemas for all models to improve dev experience #44

feat: added json schemas for all models to improve dev experience

feat: added json schemas for all models to improve dev experience #44

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -o bin/aos ./cmd/aos
- name: Test
run: |
go test -v -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out
generate:
needs: ci
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup tools
run: |
go install github.com/discord-gophers/goapi-gen@latest
go install go.uber.org/mock/mockgen@latest
- name: Generate
run: |
go generate ./...
- uses: EndBug/add-and-commit@v9