Skip to content

Commit

Permalink
Some api description fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Jun 7, 2021
1 parent d7485d1 commit 0d29029
Show file tree
Hide file tree
Showing 43 changed files with 532 additions and 588 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run unit tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.13' ]
steps:
- uses: actions/checkout@v2
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Test
run: |
go test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ _testmain.go
*.prof
.idea
.openapi-generator
.openapi-generator-ignore
.openapi-generator-ignore
post-generate.sh
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: go

install:
- go get -d -v .

script:
- go build -v ./

Loading

0 comments on commit 0d29029

Please sign in to comment.