Skip to content

fix(ci): disable setup go cache #7

fix(ci): disable setup go cache

fix(ci): disable setup go cache #7

Workflow file for this run

name: CI
on:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: v1.54
args: --verbose --timeout=3m --issues-exit-code=1
- name: Test
run: go test -v ./... -race -covermode=atomic