Merge pull request #169 from Elbahkiry/disk_storage #252
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |