Skip to content

Merge pull request #6 from nsumbadze/nlazynpm #11

Merge pull request #6 from nsumbadze/nlazynpm

Merge pull request #6 from nsumbadze/nlazynpm #11

Workflow file for this run

name: Continuous Integration
on: push
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version:
- '1.18.x'
- 'stable'
env:
GOFLAGS: -mod=vendor
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test code
run: go test ./...
- name: Vet code
run: go vet ./...
- name: Build binaries
run: go build ./...