Skip to content

fix(infra/linter): overall issues #3

fix(infra/linter): overall issues

fix(infra/linter): overall issues #3

Workflow file for this run

name: Golang
on:
push:
branches:
- 21-cicd
pull_request:
branches:
- main
- develop
jobs:
build:
strategy:
matrix:
go: [ 'stable' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...