Skip to content

Merge pull request #38 from vearne/fix/bool #54

Merge pull request #38 from vearne/fix/bool

Merge pull request #38 from vearne/fix/bool #54

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: remove dirs
run: rm -rf example test
- 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: golangci-lint run --modules-download-mode=mod