Skip to content

go install swag

go install swag #70

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go get ./...
- name: Build
run: make build ARGS="-v"
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go get ./...
- name: Test
run: go test -coverprofile=coverage.txt -race -covermode=atomic -v -coverpkg=./src/... ./tests/... ./src/...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}