Skip to content

Add a new /dogs endpoint to list all dogs #18

Add a new /dogs endpoint to list all dogs

Add a new /dogs endpoint to list all dogs #18

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Validate OpenAPI Specification
run: make openapi ARGS='validate -i pets_api.yaml'
- name: Validate Dirty Workspace
run: |
make generate
git diff --exit-code -- ':!http/api/README.md'
- name: Test
run: make test