Skip to content

docs: update changelog #22

docs: update changelog

docs: update changelog #22

Workflow file for this run

---
name: build-and-test
on:
push:
branches:
- "*"
tags:
- v*
pull_request: {}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Build
run: make build
- name: Test
run: make test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Lint
uses: golangci/golangci-lint-action@v4
- name: Vulnerabilities
id: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-file: go.mod
repo-checkout: false