Skip to content

Merge pull request #40 from vearne/feat/lint #58

Merge pull request #40 from vearne/feat/lint

Merge pull request #40 from vearne/feat/lint #58

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@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- 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.58.1
steps:
- name: checkout
uses: actions/checkout@v4
- name: golangci-lint
run: golangci-lint run --modules-download-mode=mod