Skip to content

Update README.md according to gwPort changes #182

Update README.md according to gwPort changes

Update README.md according to gwPort changes #182

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v2.5.2
- name: Run linter
run: make lint
- name: Run test coverage
run: go test $(go list ./... | grep -v example | grep -v pkged.go | grep -v static_files.go) -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)