Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.26.0 to 6.26.3 #82

chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.26.0 to 6.26.3

chore(deps): bump github.com/brianvoe/gofakeit/v6 from 6.26.0 to 6.26.3 #82

Workflow file for this run

name: quality
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.21'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: --timeout 5m
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.21'
- name: Run unit tests
run: go test -v ./...