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

chore(deps): bump docker/build-push-action from 5 to 6 #104

chore(deps): bump docker/build-push-action from 5 to 6

chore(deps): bump docker/build-push-action from 5 to 6 #104

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@v4
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 ./...