Skip to content

fix: ci.yml

fix: ci.yml #2

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '>=1.23.0'
cache: false
# cache-dependency-path: go.sum
- name: Go Lint
uses: golangci/golangci-lint-action@v3
- name: Go Test
run: |
go test ./...