Skip to content

Refactor CCache to use sync.Map for improved concurrency #10

Refactor CCache to use sync.Map for improved concurrency

Refactor CCache to use sync.Map for improved concurrency #10

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
CI:
name: Run checks
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21', '1.23', '1.25']
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -race -v ./...