Skip to content

Fill in missing well known ports. #124

Fill in missing well known ports.

Fill in missing well known ports. #124

Workflow file for this run

name: Validate for PR
on:
push:
branches:
- master
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: '1.17'
- name: Get dependencies
run: make deps
- name: Unit tests
run: make ci-test
- name: Build
run: make build
- name: Acceptance tests
run: make acceptance-test
env:
GO111MODULE: on
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}