Skip to content

workflows: update the flag for the test commands #21

workflows: update the flag for the test commands

workflows: update the flag for the test commands #21

Workflow file for this run

name: Hbase Pull Request Check
on:
pull_request:
paths:
- 'hbase/**'
- '.github/workflows/hbase.yml'
push:
paths:
- 'hbase/**'
- '.github/workflows/hbase.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: cd hbase && go build -v ./...
- name: Test
run: cd hbase && go test -v -coverprofile=coverage.out -gcflags=all=-l ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
files: ./hbase/coverage.out
flags: hbase
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}