Skip to content

updated to v4 need to fix all files #540

updated to v4 need to fix all files

updated to v4 need to fix all files #540

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Format
run: go fmt ./...
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
uses: cedrickring/golang-action@master
with:
args: make test
- name: Secure
run: make secure