Skip to content

chore: add ci and logger pkg #1

chore: add ci and logger pkg

chore: add ci and logger pkg #1

Workflow file for this run

name: Go
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20.x", "1.21.x"]
include:
- go: 1.21.x
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
# cache-dependency-path: "**/go.sum"
- name: Download Dependencies
run: |
go mod download
make lint
make build