Skip to content

Develop

Develop #24

Workflow file for this run

name: golang-ci
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Test
run: go mod vendor && go test -v ./
lint:
runs-on: ubuntu-latest
container:
image: golangci/golangci-lint:v1.48.0
steps:
- name: checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: golangci-lint
run: rm -rf example && golangci-lint run --modules-download-mode=mod