Skip to content

fix the issue that appearing in initializing go-coco project #4

fix the issue that appearing in initializing go-coco project

fix the issue that appearing in initializing go-coco project #4

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.18.x
- uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependency
run: go mod download
- name: Run Test
run: go test -race -cover ./...