Skip to content

Merge dev to main

Merge dev to main #95

Workflow file for this run

name: main
on:
workflow_dispatch:
push:
branches:
- 'main'
- 'dev'
pull_request:
types: opened
jobs:
build-static-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: make build
- name: FMT
run: make fmt
- name: VET
run: make vet
- name: LINT
run: make lint
env:
LINT: true
build-ut:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: ut
run: make test
env:
UT: true