Skip to content

add disk storage

add disk storage #247

Workflow file for this run

name: codecov
on: [push,pull_request]
jobs:
codecov:
name: codecov
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19.1
uses: actions/setup-go@v2
with:
go-version: 1.19.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: TestCov
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
with:
files: ./coverage.out
fail_ci_if_error: true