Skip to content

chore(deps-dev): bump @commitlint/cli from 19.3.0 to 19.4.1 #59

chore(deps-dev): bump @commitlint/cli from 19.3.0 to 19.4.1

chore(deps-dev): bump @commitlint/cli from 19.3.0 to 19.4.1 #59

Workflow file for this run

name: Quality
on: [push]
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21.6']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: false
- name: Install dependencies
run: go get .
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true
- name: Test
run: go test -v -cover
- name: Build
run: go build